123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
- using FairyGUI;
- namespace UI.DressUp
- {
- public partial class UI_DressUpFightUI
- {
- public GComponent target;
- public Controller m_c1;
- public GGraph m_touchPad;
- public GComboBox m_comboBox;
- public GButton m_btnBack;
- public GButton m_btnHome;
- public GLoader m_scoreType;
- public GTextField m_txtScore;
- public UI_Component1 m_compNeed;
- public UI_comListType m_comListType1;
- public UI_comListType m_comListType2;
- public UI_PartsList m_partsList;
- public UI_PartsList m_partsList2;
- public GButton m_btnHint;
- public GGraph m_btnClose;
- public GTextField m_txtHint;
- public GGroup m_groupTaskHint;
- public GButton m_btnClothingShop;
- public GButton m_btnRepeal;
- public GButton m_btnRenewal;
- public GButton m_btnDelete;
- public GButton m_btnSearch;
- public GButton m_btnNext;
- public GButton m_btnRecommend;
- public GTextField m_txtRecommendCount;
- public GButton m_btnAutoPlay;
- public GGroup m_graContent;
- public const string URL = "ui://mbo439wbqsvd2m";
- public const string PACKAGE_NAME = "DressUp";
- public const string RES_NAME = "DressUpFightUI";
- private static UI_DressUpFightUI _proxy;
- public static UI_DressUpFightUI Create(GObject gObject = null)
- {
- var ui = new UI_DressUpFightUI();
- 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_DressUpFightUI Proxy(GObject gObject = null)
- {
- if(_proxy == null)
- {
- _proxy = new UI_DressUpFightUI();
- }
- 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_touchPad = (GGraph)comp.GetChild("touchPad");
- m_comboBox = (GComboBox)comp.GetChild("comboBox");
- m_btnBack = (GButton)comp.GetChild("btnBack");
- m_btnHome = (GButton)comp.GetChild("btnHome");
- m_scoreType = (GLoader)comp.GetChild("scoreType");
- m_txtScore = (GTextField)comp.GetChild("txtScore");
- m_compNeed = (UI_Component1)UI_Component1.Create(comp.GetChild("compNeed"));
- 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_btnHint = (GButton)comp.GetChild("btnHint");
- m_btnClose = (GGraph)comp.GetChild("btnClose");
- m_txtHint = (GTextField)comp.GetChild("txtHint");
- m_groupTaskHint = (GGroup)comp.GetChild("groupTaskHint");
- m_btnClothingShop = (GButton)comp.GetChild("btnClothingShop");
- m_btnRepeal = (GButton)comp.GetChild("btnRepeal");
- m_btnRenewal = (GButton)comp.GetChild("btnRenewal");
- m_btnDelete = (GButton)comp.GetChild("btnDelete");
- m_btnSearch = (GButton)comp.GetChild("btnSearch");
- m_btnNext = (GButton)comp.GetChild("btnNext");
- m_btnRecommend = (GButton)comp.GetChild("btnRecommend");
- m_txtRecommendCount = (GTextField)comp.GetChild("txtRecommendCount");
- m_btnAutoPlay = (GButton)comp.GetChild("btnAutoPlay");
- m_graContent = (GGroup)comp.GetChild("graContent");
- }
- public void Dispose(bool disposeTarget = false)
- {
- m_c1 = null;
- m_touchPad = null;
- m_comboBox = null;
- m_btnBack = null;
- m_btnHome = null;
- m_scoreType = null;
- m_txtScore = null;
- m_compNeed.Dispose();
- m_compNeed = 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_btnHint = null;
- m_btnClose = null;
- m_txtHint = null;
- m_groupTaskHint = null;
- m_btnClothingShop = null;
- m_btnRepeal = null;
- m_btnRenewal = null;
- m_btnDelete = null;
- m_btnSearch = null;
- m_btnNext = null;
- m_btnRecommend = null;
- m_txtRecommendCount = null;
- m_btnAutoPlay = null;
- m_graContent = null;
- if(disposeTarget && target != null)
- {
- target.RemoveFromParent();
- target.Dispose();
- }
- target = null;
- }
- }
- }
|