|
@@ -19,8 +19,8 @@ namespace UI.League
|
|
|
public GComponent m_comHead;
|
|
|
public GButton m_btnChangeNotice;
|
|
|
public GTextField m_txtLeaderName;
|
|
|
- public GTextField m_txtNotice;
|
|
|
public GButton m_btnChat;
|
|
|
+ public UI_comTxtNotice m_comtxtNotice;
|
|
|
public UI_ButtonModle6 m_btnPray;
|
|
|
public UI_ButtonModle2 m_btnSkill;
|
|
|
public UI_ButtonModle3 m_btnGift;
|
|
@@ -86,8 +86,8 @@ namespace UI.League
|
|
|
m_comHead = (GComponent)comp.GetChild("comHead");
|
|
|
m_btnChangeNotice = (GButton)comp.GetChild("btnChangeNotice");
|
|
|
m_txtLeaderName = (GTextField)comp.GetChild("txtLeaderName");
|
|
|
- m_txtNotice = (GTextField)comp.GetChild("txtNotice");
|
|
|
m_btnChat = (GButton)comp.GetChild("btnChat");
|
|
|
+ m_comtxtNotice = (UI_comTxtNotice)UI_comTxtNotice.Create(comp.GetChild("comtxtNotice"));
|
|
|
m_btnPray = (UI_ButtonModle6)UI_ButtonModle6.Create(comp.GetChild("btnPray"));
|
|
|
m_btnSkill = (UI_ButtonModle2)UI_ButtonModle2.Create(comp.GetChild("btnSkill"));
|
|
|
m_btnGift = (UI_ButtonModle3)UI_ButtonModle3.Create(comp.GetChild("btnGift"));
|
|
@@ -112,8 +112,9 @@ namespace UI.League
|
|
|
m_comHead = null;
|
|
|
m_btnChangeNotice = null;
|
|
|
m_txtLeaderName = null;
|
|
|
- m_txtNotice = null;
|
|
|
m_btnChat = null;
|
|
|
+ m_comtxtNotice.Dispose();
|
|
|
+ m_comtxtNotice = null;
|
|
|
m_btnPray.Dispose();
|
|
|
m_btnPray = null;
|
|
|
m_btnSkill.Dispose();
|