UI_ComItem.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
  2. using FairyGUI;
  3. namespace UI.CommonGame
  4. {
  5. public partial class UI_ComItem
  6. {
  7. public GComponent target;
  8. public GLoader m_loaIcon;
  9. public GTextField m_txtName;
  10. public GTextField m_txtHasCount;
  11. public GLoader m_loaRarity;
  12. public GTextField m_txtCount;
  13. public GImage m_imgGot;
  14. public GImage m_imgHas;
  15. public GImage m_imgNotHas;
  16. public GImage m_imgShowTong;
  17. public GGroup m_grpGot;
  18. public const string URL = "ui://eg2y0ldpj48o98";
  19. public const string PACKAGE_NAME = "CommonGame";
  20. public const string RES_NAME = "ComItem";
  21. private static UI_ComItem _proxy;
  22. public static UI_ComItem Create(GObject gObject = null)
  23. {
  24. var ui = new UI_ComItem();
  25. if(gObject == null)
  26. ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME);
  27. else
  28. ui.target = (GComponent)gObject;
  29. ui.Init(ui.target);
  30. return ui;
  31. }
  32. public static UI_ComItem Proxy(GObject gObject = null)
  33. {
  34. if(_proxy == null)
  35. {
  36. _proxy = new UI_ComItem();
  37. }
  38. var ui = _proxy;
  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 void ProxyEnd()
  47. {
  48. if (_proxy != null)
  49. {
  50. _proxy.Dispose();
  51. }
  52. }
  53. public static void ClearProxy()
  54. {
  55. ProxyEnd();
  56. _proxy = null;
  57. }
  58. private void Init(GComponent comp)
  59. {
  60. m_loaIcon = (GLoader)comp.GetChild("loaIcon");
  61. m_txtName = (GTextField)comp.GetChild("txtName");
  62. m_txtHasCount = (GTextField)comp.GetChild("txtHasCount");
  63. m_loaRarity = (GLoader)comp.GetChild("loaRarity");
  64. m_txtCount = (GTextField)comp.GetChild("txtCount");
  65. m_imgGot = (GImage)comp.GetChild("imgGot");
  66. m_imgHas = (GImage)comp.GetChild("imgHas");
  67. m_imgNotHas = (GImage)comp.GetChild("imgNotHas");
  68. m_imgShowTong = (GImage)comp.GetChild("imgShowTong");
  69. m_grpGot = (GGroup)comp.GetChild("grpGot");
  70. }
  71. public void Dispose(bool disposeTarget = false)
  72. {
  73. m_loaIcon = null;
  74. m_txtName = null;
  75. m_txtHasCount = null;
  76. m_loaRarity = null;
  77. m_txtCount = null;
  78. m_imgGot = null;
  79. m_imgHas = null;
  80. m_imgNotHas = null;
  81. m_imgShowTong = null;
  82. m_grpGot = null;
  83. if(disposeTarget && target != null)
  84. {
  85. target.RemoveFromParent();
  86. target.Dispose();
  87. }
  88. target = null;
  89. }
  90. }
  91. }