|
@@ -21,20 +21,20 @@ namespace UI.League
|
|
|
public GTextField m_txtAnswerNum;
|
|
|
public GTextField m_txtContent;
|
|
|
public GList m_listResult;
|
|
|
- public GTextInput m_txtResult;
|
|
|
- public GImage m_imgFault;
|
|
|
- public GTextField m_txtRightCount1;
|
|
|
public GLoader m_loaIocn;
|
|
|
public UI_ComHeadIcon m_comRightHead;
|
|
|
public GGraph m_holderHead;
|
|
|
public GImage m_imgFail;
|
|
|
public GTextField m_txtInfo;
|
|
|
public GTextField m_txtCdTime;
|
|
|
+ public GTextField m_txtRightCount1;
|
|
|
public GTextField m_txtJoinNum;
|
|
|
public GList m_listJoin;
|
|
|
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";
|
|
@@ -96,20 +96,20 @@ namespace UI.League
|
|
|
m_txtAnswerNum = (GTextField)comp.GetChild("txtAnswerNum");
|
|
|
m_txtContent = (GTextField)comp.GetChild("txtContent");
|
|
|
m_listResult = (GList)comp.GetChild("listResult");
|
|
|
- m_txtResult = (GTextInput)comp.GetChild("txtResult");
|
|
|
- m_imgFault = (GImage)comp.GetChild("imgFault");
|
|
|
- m_txtRightCount1 = (GTextField)comp.GetChild("txtRightCount1");
|
|
|
m_loaIocn = (GLoader)comp.GetChild("loaIocn");
|
|
|
m_comRightHead = (UI_ComHeadIcon)UI_ComHeadIcon.Create(comp.GetChild("comRightHead"));
|
|
|
m_holderHead = (GGraph)comp.GetChild("holderHead");
|
|
|
m_imgFail = (GImage)comp.GetChild("imgFail");
|
|
|
m_txtInfo = (GTextField)comp.GetChild("txtInfo");
|
|
|
m_txtCdTime = (GTextField)comp.GetChild("txtCdTime");
|
|
|
+ m_txtRightCount1 = (GTextField)comp.GetChild("txtRightCount1");
|
|
|
m_txtJoinNum = (GTextField)comp.GetChild("txtJoinNum");
|
|
|
m_listJoin = (GList)comp.GetChild("listJoin");
|
|
|
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)
|
|
|
{
|
|
@@ -127,9 +127,6 @@ namespace UI.League
|
|
|
m_txtAnswerNum = null;
|
|
|
m_txtContent = null;
|
|
|
m_listResult = null;
|
|
|
- m_txtResult = null;
|
|
|
- m_imgFault = null;
|
|
|
- m_txtRightCount1 = null;
|
|
|
m_loaIocn = null;
|
|
|
m_comRightHead.Dispose();
|
|
|
m_comRightHead = null;
|
|
@@ -137,12 +134,15 @@ namespace UI.League
|
|
|
m_imgFail = null;
|
|
|
m_txtInfo = null;
|
|
|
m_txtCdTime = null;
|
|
|
+ m_txtRightCount1 = null;
|
|
|
m_txtJoinNum = null;
|
|
|
m_listJoin = null;
|
|
|
m_listChat = null;
|
|
|
m_txtChat = null;
|
|
|
m_btnSend.Dispose();
|
|
|
m_btnSend = null;
|
|
|
+ m_txtResult = null;
|
|
|
+ m_imgFault = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|