|
@@ -13,13 +13,13 @@ namespace UI.ActivityThemeLuckyBox
|
|
|
public GGraph m_bgEffectHolder;
|
|
|
public GButton m_btnBack;
|
|
|
public UI_Button1 m_btnChapter;
|
|
|
+ public UI_Button1 m_btnLuckyBox;
|
|
|
public UI_Button1 m_btnTask;
|
|
|
public UI_Button1 m_btnShop;
|
|
|
public GTextField m_timeDesc;
|
|
|
public GTextField m_txtTime;
|
|
|
public GTextField m_txtTime_4;
|
|
|
public GButton m_btnLuckyBox_old;
|
|
|
- public UI_Button1 m_btnLuckyBox;
|
|
|
public GImage m_mask;
|
|
|
public GLoader m_icon_5;
|
|
|
public GTextField m_txtTime_5;
|
|
@@ -79,13 +79,13 @@ namespace UI.ActivityThemeLuckyBox
|
|
|
m_bgEffectHolder = (GGraph)comp.GetChild("bgEffectHolder");
|
|
|
m_btnBack = (GButton)comp.GetChild("btnBack");
|
|
|
m_btnChapter = (UI_Button1)UI_Button1.Create(comp.GetChild("btnChapter"));
|
|
|
+ m_btnLuckyBox = (UI_Button1)UI_Button1.Create(comp.GetChild("btnLuckyBox"));
|
|
|
m_btnTask = (UI_Button1)UI_Button1.Create(comp.GetChild("btnTask"));
|
|
|
m_btnShop = (UI_Button1)UI_Button1.Create(comp.GetChild("btnShop"));
|
|
|
m_timeDesc = (GTextField)comp.GetChild("timeDesc");
|
|
|
m_txtTime = (GTextField)comp.GetChild("txtTime");
|
|
|
m_txtTime_4 = (GTextField)comp.GetChild("txtTime_4");
|
|
|
m_btnLuckyBox_old = (GButton)comp.GetChild("btnLuckyBox_old");
|
|
|
- m_btnLuckyBox = (UI_Button1)UI_Button1.Create(comp.GetChild("btnLuckyBox"));
|
|
|
m_mask = (GImage)comp.GetChild("mask");
|
|
|
m_icon_5 = (GLoader)comp.GetChild("icon_5");
|
|
|
m_txtTime_5 = (GTextField)comp.GetChild("txtTime_5");
|
|
@@ -103,6 +103,8 @@ namespace UI.ActivityThemeLuckyBox
|
|
|
m_btnBack = null;
|
|
|
m_btnChapter.Dispose();
|
|
|
m_btnChapter = null;
|
|
|
+ m_btnLuckyBox.Dispose();
|
|
|
+ m_btnLuckyBox = null;
|
|
|
m_btnTask.Dispose();
|
|
|
m_btnTask = null;
|
|
|
m_btnShop.Dispose();
|
|
@@ -111,8 +113,6 @@ namespace UI.ActivityThemeLuckyBox
|
|
|
m_txtTime = null;
|
|
|
m_txtTime_4 = null;
|
|
|
m_btnLuckyBox_old = null;
|
|
|
- m_btnLuckyBox.Dispose();
|
|
|
- m_btnLuckyBox = null;
|
|
|
m_mask = null;
|
|
|
m_icon_5 = null;
|
|
|
m_txtTime_5 = null;
|