| 123456789101112131415161718192021222324252627282930313233343536373839404142 | 
							- 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) ;
 
- 			
 
- 		}
 
- 		
 
- 		public void CustomInit(string tips)
 
- 		{
 
- 			
 
- 			Text_Name.text = tips ;
 
- 			
 
- 		}
 
- 	}
 
- }
 
 
  |