|
@@ -8,7 +8,7 @@ namespace UI.Common
|
|
|
{
|
|
|
public GComponent target;
|
|
|
public Controller m_checkType;
|
|
|
- public GGraph m_graphBg;
|
|
|
+ public GGraph m_mask;
|
|
|
public GTextField m_txtContent;
|
|
|
public GTextField m_txtTips;
|
|
|
public GButton m_btnLeft;
|
|
@@ -62,7 +62,7 @@ namespace UI.Common
|
|
|
private void Init(GComponent comp)
|
|
|
{
|
|
|
m_checkType = comp.GetController("checkType");
|
|
|
- m_graphBg = (GGraph)comp.GetChild("graphBg");
|
|
|
+ m_mask = (GGraph)comp.GetChild("mask");
|
|
|
m_txtContent = (GTextField)comp.GetChild("txtContent");
|
|
|
m_txtTips = (GTextField)comp.GetChild("txtTips");
|
|
|
m_btnLeft = (GButton)comp.GetChild("btnLeft");
|
|
@@ -72,7 +72,7 @@ namespace UI.Common
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
|
m_checkType = null;
|
|
|
- m_graphBg = null;
|
|
|
+ m_mask = null;
|
|
|
m_txtContent = null;
|
|
|
m_txtTips = null;
|
|
|
m_btnLeft = null;
|