|
@@ -8,7 +8,6 @@ namespace UI.Common
|
|
{
|
|
{
|
|
public GComponent target;
|
|
public GComponent target;
|
|
public GGraph m_graphBg;
|
|
public GGraph m_graphBg;
|
|
- public GComponent m_bg;
|
|
|
|
public GTextField m_txtContent;
|
|
public GTextField m_txtContent;
|
|
public GTextField m_txtTips;
|
|
public GTextField m_txtTips;
|
|
public GButton m_btnLeft;
|
|
public GButton m_btnLeft;
|
|
@@ -61,7 +60,6 @@ namespace UI.Common
|
|
private void Init(GComponent comp)
|
|
private void Init(GComponent comp)
|
|
{
|
|
{
|
|
m_graphBg = (GGraph)comp.GetChild("graphBg");
|
|
m_graphBg = (GGraph)comp.GetChild("graphBg");
|
|
- m_bg = (GComponent)comp.GetChild("bg");
|
|
|
|
m_txtContent = (GTextField)comp.GetChild("txtContent");
|
|
m_txtContent = (GTextField)comp.GetChild("txtContent");
|
|
m_txtTips = (GTextField)comp.GetChild("txtTips");
|
|
m_txtTips = (GTextField)comp.GetChild("txtTips");
|
|
m_btnLeft = (GButton)comp.GetChild("btnLeft");
|
|
m_btnLeft = (GButton)comp.GetChild("btnLeft");
|
|
@@ -70,7 +68,6 @@ namespace UI.Common
|
|
public void Dispose(bool disposeTarget = false)
|
|
public void Dispose(bool disposeTarget = false)
|
|
{
|
|
{
|
|
m_graphBg = null;
|
|
m_graphBg = null;
|
|
- m_bg = null;
|
|
|
|
m_txtContent = null;
|
|
m_txtContent = null;
|
|
m_txtTips = null;
|
|
m_txtTips = null;
|
|
m_btnLeft = null;
|
|
m_btnLeft = null;
|