| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.DressUp{    public partial class UI_DressUpUI    {        public GComponent target;        public Controller m_c1;        public Controller m_c2;        public GGraph m_touchPad;        public GLoader m_loaShow;        public GButton m_btnShow;        public GButton m_btnBack;        public GButton m_btnHome;        public GComboBox m_comboBox;        public UI_comListType m_comListType1;        public UI_comListType m_comListType2;        public UI_PartsList m_partsList;        public UI_PartsList m_partsList2;        public GButton m_btnSave;        public GButton m_btnNext;        public GButton m_btnAction;        public GButton m_btnPhoto;        public GButton m_btnLastStep;        public GButton m_btnNextStep;        public GButton m_btnHide;        public GButton m_btnSearch;        public GButton m_btnDelete;        public GGroup m_grpContent;        public const string URL = "ui://mbo439wbq08x0";        public const string PACKAGE_NAME = "DressUp";        public const string RES_NAME = "DressUpUI";        private static UI_DressUpUI _proxy;        public static UI_DressUpUI Create(GObject gObject = null)        {            var ui = new UI_DressUpUI();            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_DressUpUI Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_DressUpUI();            }            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_c2 = comp.GetController("c2");            m_touchPad = (GGraph)comp.GetChild("touchPad");            m_loaShow = (GLoader)comp.GetChild("loaShow");            m_btnShow = (GButton)comp.GetChild("btnShow");            m_btnBack = (GButton)comp.GetChild("btnBack");            m_btnHome = (GButton)comp.GetChild("btnHome");            m_comboBox = (GComboBox)comp.GetChild("comboBox");            m_comListType1 = (UI_comListType)UI_comListType.Create(comp.GetChild("comListType1"));            m_comListType2 = (UI_comListType)UI_comListType.Create(comp.GetChild("comListType2"));            m_partsList = (UI_PartsList)UI_PartsList.Create(comp.GetChild("partsList"));            m_partsList2 = (UI_PartsList)UI_PartsList.Create(comp.GetChild("partsList2"));            m_btnSave = (GButton)comp.GetChild("btnSave");            m_btnNext = (GButton)comp.GetChild("btnNext");            m_btnAction = (GButton)comp.GetChild("btnAction");            m_btnPhoto = (GButton)comp.GetChild("btnPhoto");            m_btnLastStep = (GButton)comp.GetChild("btnLastStep");            m_btnNextStep = (GButton)comp.GetChild("btnNextStep");            m_btnHide = (GButton)comp.GetChild("btnHide");            m_btnSearch = (GButton)comp.GetChild("btnSearch");            m_btnDelete = (GButton)comp.GetChild("btnDelete");            m_grpContent = (GGroup)comp.GetChild("grpContent");        }        public void Dispose(bool disposeTarget = false)        {            m_c1 = null;            m_c2 = null;            m_touchPad = null;            m_loaShow = null;            m_btnShow = null;            m_btnBack = null;            m_btnHome = null;            m_comboBox = null;            m_comListType1.Dispose();            m_comListType1 = null;            m_comListType2.Dispose();            m_comListType2 = null;            m_partsList.Dispose();            m_partsList = null;            m_partsList2.Dispose();            m_partsList2 = null;            m_btnSave = null;            m_btnNext = null;            m_btnAction = null;            m_btnPhoto = null;            m_btnLastStep = null;            m_btnNextStep = null;            m_btnHide = null;            m_btnSearch = null;            m_btnDelete = null;            m_grpContent = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |