UI_DeleteAccountUI.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
  2. using FairyGUI;
  3. namespace UI.DeleteAccount
  4. {
  5. public partial class UI_DeleteAccountUI
  6. {
  7. public GComponent target;
  8. public Controller m_c1;
  9. public GComponent m_bg;
  10. public GButton m_btnBack;
  11. public UI_ComTextCondition m_txtComp;
  12. public GButton m_btnAgree;
  13. public GTextField m_txtAgree;
  14. public UI_Button19 m_btnNext;
  15. public GGroup m_groupAgree1;
  16. public UI_Button19 m_btnSure;
  17. public UI_Button19 m_btnCancel;
  18. public GTextInput m_inputIDNumber;
  19. public GTextInput m_inputName;
  20. public GTextField m_txtRoleName;
  21. public GTextField m_txtAccount;
  22. public GTextField m_txtLvl;
  23. public GGroup m_groupSure;
  24. public GTextField m_txtSuccess;
  25. public UI_Button19 m_btnQuit;
  26. public GGroup m_groupResult;
  27. public UI_ComTextProtocal m_txtComp_2;
  28. public GButton m_btnAgree2;
  29. public GTextField m_txtAgree2;
  30. public UI_Button19 m_btnNext2;
  31. public GGroup m_groupAgree2;
  32. public const string URL = "ui://foz986b69xh80";
  33. public const string PACKAGE_NAME = "DeleteAccount";
  34. public const string RES_NAME = "DeleteAccountUI";
  35. private static UI_DeleteAccountUI _proxy;
  36. public static UI_DeleteAccountUI Create(GObject gObject = null)
  37. {
  38. var ui = new UI_DeleteAccountUI();
  39. if(gObject == null)
  40. ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME);
  41. else
  42. ui.target = (GComponent)gObject;
  43. ui.Init(ui.target);
  44. return ui;
  45. }
  46. public static UI_DeleteAccountUI Proxy(GObject gObject = null)
  47. {
  48. if(_proxy == null)
  49. {
  50. _proxy = new UI_DeleteAccountUI();
  51. }
  52. var ui = _proxy;
  53. if(gObject == null)
  54. ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME);
  55. else
  56. ui.target = (GComponent)gObject;
  57. ui.Init(ui.target);
  58. return ui;
  59. }
  60. public static void ProxyEnd()
  61. {
  62. if (_proxy != null)
  63. {
  64. _proxy.Dispose();
  65. }
  66. }
  67. public static void ClearProxy()
  68. {
  69. ProxyEnd();
  70. _proxy = null;
  71. }
  72. private void Init(GComponent comp)
  73. {
  74. m_c1 = comp.GetController("c1");
  75. m_bg = (GComponent)comp.GetChild("bg");
  76. m_btnBack = (GButton)comp.GetChild("btnBack");
  77. m_txtComp = (UI_ComTextCondition)UI_ComTextCondition.Create(comp.GetChild("txtComp"));
  78. m_btnAgree = (GButton)comp.GetChild("btnAgree");
  79. m_txtAgree = (GTextField)comp.GetChild("txtAgree");
  80. m_btnNext = (UI_Button19)UI_Button19.Create(comp.GetChild("btnNext"));
  81. m_groupAgree1 = (GGroup)comp.GetChild("groupAgree1");
  82. m_btnSure = (UI_Button19)UI_Button19.Create(comp.GetChild("btnSure"));
  83. m_btnCancel = (UI_Button19)UI_Button19.Create(comp.GetChild("btnCancel"));
  84. m_inputIDNumber = (GTextInput)comp.GetChild("inputIDNumber");
  85. m_inputName = (GTextInput)comp.GetChild("inputName");
  86. m_txtRoleName = (GTextField)comp.GetChild("txtRoleName");
  87. m_txtAccount = (GTextField)comp.GetChild("txtAccount");
  88. m_txtLvl = (GTextField)comp.GetChild("txtLvl");
  89. m_groupSure = (GGroup)comp.GetChild("groupSure");
  90. m_txtSuccess = (GTextField)comp.GetChild("txtSuccess");
  91. m_btnQuit = (UI_Button19)UI_Button19.Create(comp.GetChild("btnQuit"));
  92. m_groupResult = (GGroup)comp.GetChild("groupResult");
  93. m_txtComp_2 = (UI_ComTextProtocal)UI_ComTextProtocal.Create(comp.GetChild("txtComp"));
  94. m_btnAgree2 = (GButton)comp.GetChild("btnAgree2");
  95. m_txtAgree2 = (GTextField)comp.GetChild("txtAgree2");
  96. m_btnNext2 = (UI_Button19)UI_Button19.Create(comp.GetChild("btnNext2"));
  97. m_groupAgree2 = (GGroup)comp.GetChild("groupAgree2");
  98. }
  99. public void Dispose(bool disposeTarget = false)
  100. {
  101. m_c1 = null;
  102. m_bg = null;
  103. m_btnBack = null;
  104. m_txtComp.Dispose();
  105. m_txtComp = null;
  106. m_btnAgree = null;
  107. m_txtAgree = null;
  108. m_btnNext.Dispose();
  109. m_btnNext = null;
  110. m_groupAgree1 = null;
  111. m_btnSure.Dispose();
  112. m_btnSure = null;
  113. m_btnCancel.Dispose();
  114. m_btnCancel = null;
  115. m_inputIDNumber = null;
  116. m_inputName = null;
  117. m_txtRoleName = null;
  118. m_txtAccount = null;
  119. m_txtLvl = null;
  120. m_groupSure = null;
  121. m_txtSuccess = null;
  122. m_btnQuit.Dispose();
  123. m_btnQuit = null;
  124. m_groupResult = null;
  125. m_txtComp_2.Dispose();
  126. m_txtComp_2 = null;
  127. m_btnAgree2 = null;
  128. m_txtAgree2 = null;
  129. m_btnNext2.Dispose();
  130. m_btnNext2 = null;
  131. m_groupAgree2 = null;
  132. if(disposeTarget && target != null)
  133. {
  134. target.RemoveFromParent();
  135. target.Dispose();
  136. }
  137. target = null;
  138. }
  139. }
  140. }