|
@@ -9,7 +9,7 @@ namespace UI.Card
|
|
|
public GComponent target;
|
|
|
public Controller m_c1;
|
|
|
public GButton m_btnGet;
|
|
|
- public GButton m_btnGot;
|
|
|
+ public GTextField m_txtGet;
|
|
|
public GComponent m_comItem;
|
|
|
public GTextField m_txtTitle;
|
|
|
public GTextField m_txtTips;
|
|
@@ -62,7 +62,7 @@ namespace UI.Card
|
|
|
{
|
|
|
m_c1 = comp.GetController("c1");
|
|
|
m_btnGet = (GButton)comp.GetChild("btnGet");
|
|
|
- m_btnGot = (GButton)comp.GetChild("btnGot");
|
|
|
+ m_txtGet = (GTextField)comp.GetChild("txtGet");
|
|
|
m_comItem = (GComponent)comp.GetChild("comItem");
|
|
|
m_txtTitle = (GTextField)comp.GetChild("txtTitle");
|
|
|
m_txtTips = (GTextField)comp.GetChild("txtTips");
|
|
@@ -71,7 +71,7 @@ namespace UI.Card
|
|
|
{
|
|
|
m_c1 = null;
|
|
|
m_btnGet = null;
|
|
|
- m_btnGot = null;
|
|
|
+ m_txtGet = null;
|
|
|
m_comItem = null;
|
|
|
m_txtTitle = null;
|
|
|
m_txtTips = null;
|