|
@@ -10,13 +10,18 @@ namespace UI.EnduringGiftBox
|
|
|
public GComponent m_btnUp;
|
|
|
public GComponent m_btnNext;
|
|
|
public GComponent m_btnBack;
|
|
|
+ public GGraph m_holderPaoBaby;
|
|
|
public GTextField m_txtBoxItemName;
|
|
|
public GTextField m_txtBoxResidueTime;
|
|
|
public GList m_list;
|
|
|
public GTextField m_txtUrc;
|
|
|
public UI_BtnBuyPink m_btnBuyPink;
|
|
|
+ public GGraph m_holderBtnBy;
|
|
|
public UI_ComDiscount2 m_comDiscount;
|
|
|
+ public GGraph m_holderZheKouChiXu;
|
|
|
+ public GGraph m_holderZheKou;
|
|
|
public GTextField m_txtLrc;
|
|
|
+ public GGraph m_holderStar;
|
|
|
public Transition m_t3;
|
|
|
public const string URL = "ui://bdi1qe15yjmk29";
|
|
|
public const string PACKAGE_NAME = "EnduringGiftBox";
|
|
@@ -68,13 +73,18 @@ namespace UI.EnduringGiftBox
|
|
|
m_btnUp = (GComponent)comp.GetChild("btnUp");
|
|
|
m_btnNext = (GComponent)comp.GetChild("btnNext");
|
|
|
m_btnBack = (GComponent)comp.GetChild("btnBack");
|
|
|
+ m_holderPaoBaby = (GGraph)comp.GetChild("holderPaoBaby");
|
|
|
m_txtBoxItemName = (GTextField)comp.GetChild("txtBoxItemName");
|
|
|
m_txtBoxResidueTime = (GTextField)comp.GetChild("txtBoxResidueTime");
|
|
|
m_list = (GList)comp.GetChild("list");
|
|
|
m_txtUrc = (GTextField)comp.GetChild("txtUrc");
|
|
|
m_btnBuyPink = (UI_BtnBuyPink)UI_BtnBuyPink.Create(comp.GetChild("btnBuyPink"));
|
|
|
+ m_holderBtnBy = (GGraph)comp.GetChild("holderBtnBy");
|
|
|
m_comDiscount = (UI_ComDiscount2)UI_ComDiscount2.Create(comp.GetChild("comDiscount"));
|
|
|
+ m_holderZheKouChiXu = (GGraph)comp.GetChild("holderZheKouChiXu");
|
|
|
+ m_holderZheKou = (GGraph)comp.GetChild("holderZheKou");
|
|
|
m_txtLrc = (GTextField)comp.GetChild("txtLrc");
|
|
|
+ m_holderStar = (GGraph)comp.GetChild("holderStar");
|
|
|
m_t3 = comp.GetTransition("t3");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
@@ -82,15 +92,20 @@ namespace UI.EnduringGiftBox
|
|
|
m_btnUp = null;
|
|
|
m_btnNext = null;
|
|
|
m_btnBack = null;
|
|
|
+ m_holderPaoBaby = null;
|
|
|
m_txtBoxItemName = null;
|
|
|
m_txtBoxResidueTime = null;
|
|
|
m_list = null;
|
|
|
m_txtUrc = null;
|
|
|
m_btnBuyPink.Dispose();
|
|
|
m_btnBuyPink = null;
|
|
|
+ m_holderBtnBy = null;
|
|
|
m_comDiscount.Dispose();
|
|
|
m_comDiscount = null;
|
|
|
+ m_holderZheKouChiXu = null;
|
|
|
+ m_holderZheKou = null;
|
|
|
m_txtLrc = null;
|
|
|
+ m_holderStar = null;
|
|
|
m_t3 = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|