UI_DeleteAccountUI.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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 UI_Button19 m_btnQuit;
  25. public GGroup m_groupResult;
  26. public UI_ComTextProtocal m_txtComp_2;
  27. public GButton m_btnAgree2;
  28. public GTextField m_txtAgree2;
  29. public UI_Button19 m_btnNext2;
  30. public GGroup m_groupAgree2;
  31. public const string URL = "ui://foz986b69xh80";
  32. public const string PACKAGE_NAME = "DeleteAccount";
  33. public const string RES_NAME = "DeleteAccountUI";
  34. private static UI_DeleteAccountUI _proxy;
  35. public static UI_DeleteAccountUI Create(GObject gObject = null)
  36. {
  37. var ui = new UI_DeleteAccountUI();
  38. if(gObject == null)
  39. ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME);
  40. else
  41. ui.target = (GComponent)gObject;
  42. ui.Init(ui.target);
  43. return ui;
  44. }
  45. public static UI_DeleteAccountUI Proxy(GObject gObject = null)
  46. {
  47. if(_proxy == null)
  48. {
  49. _proxy = new UI_DeleteAccountUI();
  50. }
  51. var ui = _proxy;
  52. if(gObject == null)
  53. ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME);
  54. else
  55. ui.target = (GComponent)gObject;
  56. ui.Init(ui.target);
  57. return ui;
  58. }
  59. public static void ProxyEnd()
  60. {
  61. if (_proxy != null)
  62. {
  63. _proxy.Dispose();
  64. }
  65. }
  66. public static void ClearProxy()
  67. {
  68. ProxyEnd();
  69. _proxy = null;
  70. }
  71. private void Init(GComponent comp)
  72. {
  73. m_c1 = comp.GetController("c1");
  74. m_bg = (GComponent)comp.GetChild("bg");
  75. m_btnBack = (GButton)comp.GetChild("btnBack");
  76. m_txtComp = (UI_ComTextCondition)UI_ComTextCondition.Create(comp.GetChild("txtComp"));
  77. m_btnAgree = (GButton)comp.GetChild("btnAgree");
  78. m_txtAgree = (GTextField)comp.GetChild("txtAgree");
  79. m_btnNext = (UI_Button19)UI_Button19.Create(comp.GetChild("btnNext"));
  80. m_groupAgree1 = (GGroup)comp.GetChild("groupAgree1");
  81. m_btnSure = (UI_Button19)UI_Button19.Create(comp.GetChild("btnSure"));
  82. m_btnCancel = (UI_Button19)UI_Button19.Create(comp.GetChild("btnCancel"));
  83. m_inputIDNumber = (GTextInput)comp.GetChild("inputIDNumber");
  84. m_inputName = (GTextInput)comp.GetChild("inputName");
  85. m_txtRoleName = (GTextField)comp.GetChild("txtRoleName");
  86. m_txtAccount = (GTextField)comp.GetChild("txtAccount");
  87. m_txtLvl = (GTextField)comp.GetChild("txtLvl");
  88. m_groupSure = (GGroup)comp.GetChild("groupSure");
  89. m_btnQuit = (UI_Button19)UI_Button19.Create(comp.GetChild("btnQuit"));
  90. m_groupResult = (GGroup)comp.GetChild("groupResult");
  91. m_txtComp_2 = (UI_ComTextProtocal)UI_ComTextProtocal.Create(comp.GetChild("txtComp"));
  92. m_btnAgree2 = (GButton)comp.GetChild("btnAgree2");
  93. m_txtAgree2 = (GTextField)comp.GetChild("txtAgree2");
  94. m_btnNext2 = (UI_Button19)UI_Button19.Create(comp.GetChild("btnNext2"));
  95. m_groupAgree2 = (GGroup)comp.GetChild("groupAgree2");
  96. }
  97. public void Dispose(bool disposeTarget = false)
  98. {
  99. m_c1 = null;
  100. m_bg = null;
  101. m_btnBack = null;
  102. m_txtComp.Dispose();
  103. m_txtComp = null;
  104. m_btnAgree = null;
  105. m_txtAgree = null;
  106. m_btnNext.Dispose();
  107. m_btnNext = null;
  108. m_groupAgree1 = null;
  109. m_btnSure.Dispose();
  110. m_btnSure = null;
  111. m_btnCancel.Dispose();
  112. m_btnCancel = null;
  113. m_inputIDNumber = null;
  114. m_inputName = null;
  115. m_txtRoleName = null;
  116. m_txtAccount = null;
  117. m_txtLvl = null;
  118. m_groupSure = null;
  119. m_btnQuit.Dispose();
  120. m_btnQuit = null;
  121. m_groupResult = null;
  122. m_txtComp_2.Dispose();
  123. m_txtComp_2 = null;
  124. m_btnAgree2 = null;
  125. m_txtAgree2 = null;
  126. m_btnNext2.Dispose();
  127. m_btnNext2 = null;
  128. m_groupAgree2 = null;
  129. if(disposeTarget && target != null)
  130. {
  131. target.RemoveFromParent();
  132. target.Dispose();
  133. }
  134. target = null;
  135. }
  136. }
  137. }