1234567891011121314151617181920212223242526272829303132333435 |
- using System.Linq;
- using Excel2Json;
- using Fort23.UTool;
- namespace Fort23.Mono
- {
- [UIBinding(prefab = "ShengShiConditionWidget" )]
- public partial class ShengShiConditionWidget : UIComponent
- {
- private void Init()
- {
- }
- public override void AddEvent()
- {
- }
- public override void DelEvent()
- {
- }
- public override void AddButtonEvent()
- {
- }
- public void CustomInit(AccountFileInfo.EventConditionData eventConditionData)
- {
-
- Text_Name.text = EventHelper.GetTaskMessage(eventConditionData) ;
-
- }
- }
- }
|