|
@@ -20,6 +20,8 @@ namespace UI.League
|
|
|
public GTextField m_txtAnswerTime;
|
|
|
public GTextField m_txtAnswerNum;
|
|
|
public GTextField m_txtContent;
|
|
|
+ public GTextInput m_txtResult;
|
|
|
+ public GImage m_imgFault;
|
|
|
public GList m_listResult;
|
|
|
public GLoader m_loaIocn;
|
|
|
public UI_ComHeadIcon m_comRightHead;
|
|
@@ -33,8 +35,6 @@ namespace UI.League
|
|
|
public GList m_listChat;
|
|
|
public GTextInput m_txtChat;
|
|
|
public UI_Button22 m_btnSend;
|
|
|
- public GTextInput m_txtResult;
|
|
|
- public GImage m_imgFault;
|
|
|
public const string URL = "ui://tw70qm9dpvb453";
|
|
|
public const string PACKAGE_NAME = "League";
|
|
|
public const string RES_NAME = "LeagueAnsweringUI";
|
|
@@ -95,6 +95,8 @@ namespace UI.League
|
|
|
m_txtAnswerTime = (GTextField)comp.GetChild("txtAnswerTime");
|
|
|
m_txtAnswerNum = (GTextField)comp.GetChild("txtAnswerNum");
|
|
|
m_txtContent = (GTextField)comp.GetChild("txtContent");
|
|
|
+ m_txtResult = (GTextInput)comp.GetChild("txtResult");
|
|
|
+ m_imgFault = (GImage)comp.GetChild("imgFault");
|
|
|
m_listResult = (GList)comp.GetChild("listResult");
|
|
|
m_loaIocn = (GLoader)comp.GetChild("loaIocn");
|
|
|
m_comRightHead = (UI_ComHeadIcon)UI_ComHeadIcon.Create(comp.GetChild("comRightHead"));
|
|
@@ -108,8 +110,6 @@ namespace UI.League
|
|
|
m_listChat = (GList)comp.GetChild("listChat");
|
|
|
m_txtChat = (GTextInput)comp.GetChild("txtChat");
|
|
|
m_btnSend = (UI_Button22)UI_Button22.Create(comp.GetChild("btnSend"));
|
|
|
- m_txtResult = (GTextInput)comp.GetChild("txtResult");
|
|
|
- m_imgFault = (GImage)comp.GetChild("imgFault");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
@@ -126,6 +126,8 @@ namespace UI.League
|
|
|
m_txtAnswerTime = null;
|
|
|
m_txtAnswerNum = null;
|
|
|
m_txtContent = null;
|
|
|
+ m_txtResult = null;
|
|
|
+ m_imgFault = null;
|
|
|
m_listResult = null;
|
|
|
m_loaIocn = null;
|
|
|
m_comRightHead.Dispose();
|
|
@@ -141,8 +143,6 @@ namespace UI.League
|
|
|
m_txtChat = null;
|
|
|
m_btnSend.Dispose();
|
|
|
m_btnSend = null;
|
|
|
- m_txtResult = null;
|
|
|
- m_imgFault = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|