| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.ClothingDecompose{    public partial class UI_ClothingDecomposeUI    {        public GComponent target;        public Controller m_c1;        public GImage m_bg;        public GComponent m_valueBar;        public GButton m_btnBack;        public GButton m_btnRule;        public GList m_listTab;        public GList m_list;        public GTextField m_txtNone;        public GTextField m_txtShow;        public GList m_listReward;        public GButton m_btnDecompose;        public GTextField m_txtConsume;        public GTextField m_txtTips;        public GButton m_btnSelect;        public const string URL = "ui://h9mv1l71wlc20";        public const string PACKAGE_NAME = "ClothingDecompose";        public const string RES_NAME = "ClothingDecomposeUI";        private static UI_ClothingDecomposeUI _proxy;        public static UI_ClothingDecomposeUI Create(GObject gObject = null)        {            var ui = new UI_ClothingDecomposeUI();            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_ClothingDecomposeUI Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_ClothingDecomposeUI();            }            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_c1 = comp.GetController("c1");            m_bg = (GImage)comp.GetChild("bg");            m_valueBar = (GComponent)comp.GetChild("valueBar");            m_btnBack = (GButton)comp.GetChild("btnBack");            m_btnRule = (GButton)comp.GetChild("btnRule");            m_listTab = (GList)comp.GetChild("listTab");            m_list = (GList)comp.GetChild("list");            m_txtNone = (GTextField)comp.GetChild("txtNone");            m_txtShow = (GTextField)comp.GetChild("txtShow");            m_listReward = (GList)comp.GetChild("listReward");            m_btnDecompose = (GButton)comp.GetChild("btnDecompose");            m_txtConsume = (GTextField)comp.GetChild("txtConsume");            m_txtTips = (GTextField)comp.GetChild("txtTips");            m_btnSelect = (GButton)comp.GetChild("btnSelect");        }        public void Dispose(bool disposeTarget = false)        {            m_c1 = null;            m_bg = null;            m_valueBar = null;            m_btnBack = null;            m_btnRule = null;            m_listTab = null;            m_list = null;            m_txtNone = null;            m_txtShow = null;            m_listReward = null;            m_btnDecompose = null;            m_txtConsume = null;            m_txtTips = null;            m_btnSelect = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |