/** This is an automatically generated class by FairyGUI. Please do not modify it. **/ using FairyGUI; namespace UI.Login { public partial class UI_ZhaoHuiPasswordUI { public GComponent target; public Controller m_c1; public GComponent m_bg; public GButton m_btnback; public GTextInput m_txtPasword; public GTextField m_txtAccountShow; public GTextInput m_txtPaswrod2; public GButton m_btnSubmit; public const string URL = "ui://myoktu7pk5ej69"; public const string PACKAGE_NAME = "Login"; public const string RES_NAME = "ZhaoHuiPasswordUI"; private static UI_ZhaoHuiPasswordUI _proxy; public static UI_ZhaoHuiPasswordUI Create(GObject gObject = null) { var ui = new UI_ZhaoHuiPasswordUI(); if(gObject == null) ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME); else ui.target = (GComponent)gObject; ui.Init(ui.target); return ui; } public static UI_ZhaoHuiPasswordUI Proxy(GObject gObject = null) { if(_proxy == null) { _proxy = new UI_ZhaoHuiPasswordUI(); } var ui = _proxy; if(gObject == null) ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME); else ui.target = (GComponent)gObject; ui.Init(ui.target); return ui; } public static void ProxyEnd() { if (_proxy != null) { _proxy.Dispose(); } } public static void ClearProxy() { ProxyEnd(); _proxy = null; } private void Init(GComponent comp) { m_c1 = comp.GetController("c1"); m_bg = (GComponent)comp.GetChild("bg"); m_btnback = (GButton)comp.GetChild("btnback"); m_txtPasword = (GTextInput)comp.GetChild("txtPasword"); m_txtAccountShow = (GTextField)comp.GetChild("txtAccountShow"); m_txtPaswrod2 = (GTextInput)comp.GetChild("txtPaswrod2"); m_btnSubmit = (GButton)comp.GetChild("btnSubmit"); } public void Dispose(bool disposeTarget = false) { m_c1 = null; m_bg = null; m_btnback = null; m_txtPasword = null; m_txtAccountShow = null; m_txtPaswrod2 = null; m_btnSubmit = null; if(disposeTarget && target != null) { target.RemoveFromParent(); target.Dispose(); } target = null; } } }