|
@@ -16,6 +16,7 @@ namespace UI.Mail
|
|
public GTextField m_txtMaxCount;
|
|
public GTextField m_txtMaxCount;
|
|
public GButton m_btnDelete;
|
|
public GButton m_btnDelete;
|
|
public GButton m_btnGet;
|
|
public GButton m_btnGet;
|
|
|
|
+ public Transition m_openViewAction;
|
|
public const string URL = "ui://y44a413eehs9c";
|
|
public const string URL = "ui://y44a413eehs9c";
|
|
public const string PACKAGE_NAME = "Mail";
|
|
public const string PACKAGE_NAME = "Mail";
|
|
public const string RES_NAME = "MailUI";
|
|
public const string RES_NAME = "MailUI";
|
|
@@ -72,6 +73,7 @@ namespace UI.Mail
|
|
m_txtMaxCount = (GTextField)comp.GetChild("txtMaxCount");
|
|
m_txtMaxCount = (GTextField)comp.GetChild("txtMaxCount");
|
|
m_btnDelete = (GButton)comp.GetChild("btnDelete");
|
|
m_btnDelete = (GButton)comp.GetChild("btnDelete");
|
|
m_btnGet = (GButton)comp.GetChild("btnGet");
|
|
m_btnGet = (GButton)comp.GetChild("btnGet");
|
|
|
|
+ m_openViewAction = comp.GetTransition("openViewAction");
|
|
}
|
|
}
|
|
public void Dispose(bool disposeTarget = false)
|
|
public void Dispose(bool disposeTarget = false)
|
|
{
|
|
{
|
|
@@ -84,6 +86,7 @@ namespace UI.Mail
|
|
m_txtMaxCount = null;
|
|
m_txtMaxCount = null;
|
|
m_btnDelete = null;
|
|
m_btnDelete = null;
|
|
m_btnGet = null;
|
|
m_btnGet = null;
|
|
|
|
+ m_openViewAction = null;
|
|
if(disposeTarget && target != null)
|
|
if(disposeTarget && target != null)
|
|
{
|
|
{
|
|
target.RemoveFromParent();
|
|
target.RemoveFromParent();
|