123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
- using FairyGUI;
- namespace UI.DressUp
- {
- public partial class UI_ArenaDressUpFightUI
- {
- public GComponent target;
- public GLoader m_loaBg;
- public GGraph m_touchPad;
- public GButton m_btnBack;
- public GTextField m_txtDressLimit;
- public UI_ComValueInfo m_comValueInfo;
- public UI_comListType m_comListType1;
- public UI_comListType m_comListType2;
- public UI_PartsList m_partsList;
- public UI_PartsList m_partsList2;
- public GButton m_btnDelete;
- public GButton m_btnSearch;
- public GButton m_btnNext;
- public GGroup m_graContent;
- public const string URL = "ui://mbo439wbpsphez";
- public const string PACKAGE_NAME = "DressUp";
- public const string RES_NAME = "ArenaDressUpFightUI";
- private static UI_ArenaDressUpFightUI _proxy;
- public static UI_ArenaDressUpFightUI Create(GObject gObject = null)
- {
- var ui = new UI_ArenaDressUpFightUI();
- 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_ArenaDressUpFightUI Proxy(GObject gObject = null)
- {
- if(_proxy == null)
- {
- _proxy = new UI_ArenaDressUpFightUI();
- }
- 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_loaBg = (GLoader)comp.GetChild("loaBg");
- m_touchPad = (GGraph)comp.GetChild("touchPad");
- m_btnBack = (GButton)comp.GetChild("btnBack");
- m_txtDressLimit = (GTextField)comp.GetChild("txtDressLimit");
- m_comValueInfo = (UI_ComValueInfo)UI_ComValueInfo.Create(comp.GetChild("comValueInfo"));
- 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_btnDelete = (GButton)comp.GetChild("btnDelete");
- m_btnSearch = (GButton)comp.GetChild("btnSearch");
- m_btnNext = (GButton)comp.GetChild("btnNext");
- m_graContent = (GGroup)comp.GetChild("graContent");
- }
- public void Dispose(bool disposeTarget = false)
- {
- m_loaBg = null;
- m_touchPad = null;
- m_btnBack = null;
- m_txtDressLimit = null;
- m_comValueInfo.Dispose();
- m_comValueInfo = 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_btnDelete = null;
- m_btnSearch = null;
- m_btnNext = null;
- m_graContent = null;
- if(disposeTarget && target != null)
- {
- target.RemoveFromParent();
- target.Dispose();
- }
- target = null;
- }
- }
- }
|