| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.Common{    public partial class UI_AlertUI    {        public GComponent target;        public GImage m_bg;        public GTextField m_txtContent;        public GButton m_btnLeft;        public GButton m_btnRight;        public const string URL = "ui://mk0fwx0xl55o0";        public const string PACKAGE_NAME = "Common";        public const string RES_NAME = "AlertUI";        private static UI_AlertUI _proxy;        public static UI_AlertUI Create(GObject gObject = null)        {            var ui = new UI_AlertUI();            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_AlertUI Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_AlertUI();            }            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_bg = (GImage)comp.GetChild("bg");            m_txtContent = (GTextField)comp.GetChild("txtContent");            m_btnLeft = (GButton)comp.GetChild("btnLeft");            m_btnRight = (GButton)comp.GetChild("btnRight");        }        public void Dispose(bool disposeTarget = false)        {            m_bg = null;            m_txtContent = null;            m_btnLeft = null;            m_btnRight = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |