/** This is an automatically generated class by FairyGUI. Please do not modify it. **/ using FairyGUI; using FairyGUI.Utils; using DragonSoul.Shared; using System; namespace DragonSoul.UI { public partial class UI_LabelContent { public const string UIPackageName = "Package1"; public const string UIResName = "LabelContent"; public GLabel self; public GTextInput m_iptName; public GTextInput m_iptLocation; public GTextInput m_iptMoney; public GComboBox m_boxYear; public GComboBox m_boxMonth; public GComboBox m_boxDay; public GComboBox m_boxHour; public GComboBox m_boxMinute; public GComboBox m_boxType; public const string URL = "ui://1dupo23lg5etdsg4"; public UI_LabelContent(GObject go=null) { if (go == null) { throw new Exception($"can't create view : {this.GetType()}"); } self = (GLabel)go; var com = go.asCom; if(com != null) { m_iptName = (GTextInput)com.GetChildAt(2); m_iptLocation = (GTextInput)com.GetChildAt(4); m_iptMoney = (GTextInput)com.GetChildAt(11); m_boxYear = (GComboBox)com.GetChildAt(12); m_boxMonth = (GComboBox)com.GetChildAt(13); m_boxDay = (GComboBox)com.GetChildAt(14); m_boxHour = (GComboBox)com.GetChildAt(15); m_boxMinute = (GComboBox)com.GetChildAt(16); m_boxType = (GComboBox)com.GetChildAt(17); } } public void Dispose() { self = null; m_iptName = null; m_iptLocation = null; m_iptMoney = null; m_boxYear = null; m_boxMonth = null; m_boxDay = null; m_boxHour = null; m_boxMinute = null; m_boxType = null; } } }