/** This is an automatically generated class by FairyGUI. Please do not modify it. **/ using FairyGUI; namespace UI.League { public partial class UI_LeagueChangeNoticeUI { public GComponent target; public GButton m_btnClose; public GTextInput m_txtContent; public GTextField m_txtCount; public GButton m_btnSave; public const string URL = "ui://tw70qm9du2u33"; public const string PACKAGE_NAME = "League"; public const string RES_NAME = "LeagueChangeNoticeUI"; private static UI_LeagueChangeNoticeUI _proxy; public static UI_LeagueChangeNoticeUI Create(GObject gObject = null) { var ui = new UI_LeagueChangeNoticeUI(); if(gObject == null) ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME); else ui.target = (GComponent)gObject; ui.Init(ui.target); return ui; } public static UI_LeagueChangeNoticeUI Proxy(GObject gObject = null) { if(_proxy == null) { _proxy = new UI_LeagueChangeNoticeUI(); } var ui = _proxy; if(gObject == null) ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME); else ui.target = (GComponent)gObject; ui.Init(ui.target); return ui; } public static void ProxyEnd() { if (_proxy != null) { _proxy.Dispose(); } } public static void ClearProxy() { ProxyEnd(); _proxy = null; } private void Init(GComponent comp) { m_btnClose = (GButton)comp.GetChild("btnClose"); m_txtContent = (GTextInput)comp.GetChild("txtContent"); m_txtCount = (GTextField)comp.GetChild("txtCount"); m_btnSave = (GButton)comp.GetChild("btnSave"); } public void Dispose(bool disposeTarget = false) { m_btnClose = null; m_txtContent = null; m_txtCount = null; m_btnSave = null; if(disposeTarget && target != null) { target.RemoveFromParent(); target.Dispose(); } target = null; } } }