|
@@ -13,6 +13,7 @@ namespace UI.Login
|
|
public GTextInput m_inputPassword;
|
|
public GTextInput m_inputPassword;
|
|
public GButton m_btnCancel;
|
|
public GButton m_btnCancel;
|
|
public GButton m_btnSure;
|
|
public GButton m_btnSure;
|
|
|
|
+ public GComboBox m_boxChooseCanal;
|
|
public const string URL = "ui://myoktu7pq08xc";
|
|
public const string URL = "ui://myoktu7pq08xc";
|
|
public const string PACKAGE_NAME = "Login";
|
|
public const string PACKAGE_NAME = "Login";
|
|
public const string RES_NAME = "LoginInputUI";
|
|
public const string RES_NAME = "LoginInputUI";
|
|
@@ -66,6 +67,7 @@ namespace UI.Login
|
|
m_inputPassword = (GTextInput)comp.GetChild("inputPassword");
|
|
m_inputPassword = (GTextInput)comp.GetChild("inputPassword");
|
|
m_btnCancel = (GButton)comp.GetChild("btnCancel");
|
|
m_btnCancel = (GButton)comp.GetChild("btnCancel");
|
|
m_btnSure = (GButton)comp.GetChild("btnSure");
|
|
m_btnSure = (GButton)comp.GetChild("btnSure");
|
|
|
|
+ m_boxChooseCanal = (GComboBox)comp.GetChild("boxChooseCanal");
|
|
}
|
|
}
|
|
public void Dispose(bool disposeTarget = false)
|
|
public void Dispose(bool disposeTarget = false)
|
|
{
|
|
{
|
|
@@ -75,6 +77,7 @@ namespace UI.Login
|
|
m_inputPassword = null;
|
|
m_inputPassword = null;
|
|
m_btnCancel = null;
|
|
m_btnCancel = null;
|
|
m_btnSure = null;
|
|
m_btnSure = null;
|
|
|
|
+ m_boxChooseCanal = null;
|
|
if(disposeTarget && target != null)
|
|
if(disposeTarget && target != null)
|
|
{
|
|
{
|
|
target.RemoveFromParent();
|
|
target.RemoveFromParent();
|