|
@@ -11,6 +11,7 @@ namespace UI.Login
|
|
public GTextField m_txtBottom;
|
|
public GTextField m_txtBottom;
|
|
public GButton m_btnNotice;
|
|
public GButton m_btnNotice;
|
|
public GButton m_btnLogout;
|
|
public GButton m_btnLogout;
|
|
|
|
+ public GImage m_imgLogo;
|
|
public GTextField m_txtVersion;
|
|
public GTextField m_txtVersion;
|
|
public const string URL = "ui://myoktu7pl55o0";
|
|
public const string URL = "ui://myoktu7pl55o0";
|
|
public const string PACKAGE_NAME = "Login";
|
|
public const string PACKAGE_NAME = "Login";
|
|
@@ -63,6 +64,7 @@ namespace UI.Login
|
|
m_txtBottom = (GTextField)comp.GetChild("txtBottom");
|
|
m_txtBottom = (GTextField)comp.GetChild("txtBottom");
|
|
m_btnNotice = (GButton)comp.GetChild("btnNotice");
|
|
m_btnNotice = (GButton)comp.GetChild("btnNotice");
|
|
m_btnLogout = (GButton)comp.GetChild("btnLogout");
|
|
m_btnLogout = (GButton)comp.GetChild("btnLogout");
|
|
|
|
+ m_imgLogo = (GImage)comp.GetChild("imgLogo");
|
|
m_txtVersion = (GTextField)comp.GetChild("txtVersion");
|
|
m_txtVersion = (GTextField)comp.GetChild("txtVersion");
|
|
}
|
|
}
|
|
public void Dispose(bool disposeTarget = false)
|
|
public void Dispose(bool disposeTarget = false)
|
|
@@ -71,6 +73,7 @@ namespace UI.Login
|
|
m_txtBottom = null;
|
|
m_txtBottom = null;
|
|
m_btnNotice = null;
|
|
m_btnNotice = null;
|
|
m_btnLogout = null;
|
|
m_btnLogout = null;
|
|
|
|
+ m_imgLogo = null;
|
|
m_txtVersion = null;
|
|
m_txtVersion = null;
|
|
if(disposeTarget && target != null)
|
|
if(disposeTarget && target != null)
|
|
{
|
|
{
|