KLUnionInfoPanelView.lua 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ---@class KLUnionInfoPanelView:UIKmlLuaViewBase
  2. ---@field newbg UIKmlLuaControl
  3. ---@field prefab_13 UIKmlLuaControl
  4. ---@field CloseButton UIKmlLuaControl
  5. ---@field img_bgBg UIKmlLuaControl
  6. ---@field nameDeco UIKmlLuaControl
  7. ---@field changeUnionNameBtn UIKmlLuaControl
  8. ---@field bg2 UIKmlLuaControl
  9. ---@field peopleCountValue UIKmlLuaControl
  10. ---@field btn_Election UIKmlLuaControl
  11. ---@field BGInner UIKmlLuaControl
  12. ---@field btn_Replace UIKmlLuaControl
  13. ---@field btn_Impeach UIKmlLuaControl
  14. ---@field flagImage UIKmlLuaControl
  15. ---@field warAllianceNameInput UIKmlLuaControl
  16. ---@field cost_txt_count UIKmlLuaControl
  17. ---@field unionName UIKmlLuaControl
  18. ---@field changeAnnoyBtn UIKmlLuaControl
  19. ---@field noticeInput UIKmlLuaControl
  20. ---@field btn_cancel UIKmlLuaControl
  21. ---@field changeFlagBtn UIKmlLuaControl
  22. ---@field levelValue UIKmlLuaControl
  23. ---@field inexpValue UIKmlLuaControl
  24. ---@field inexpAddButton UIKmlLuaControl
  25. ---@field inMoneyValue UIKmlLuaControl
  26. ---@field bossValue UIKmlLuaControl
  27. ---@field inUnionAnnoy UIKmlLuaControl
  28. ---@field inGrade UIKmlLuaControl
  29. ---@field inMemberState UIKmlLuaControl
  30. ---@field unionNameModify UIKmlLuaControl
  31. ---@field btn_panel_name_yes UIKmlLuaControl
  32. ---@field btn_panel_name_no UIKmlLuaControl
  33. ---@field panel_report UIKmlLuaControl
  34. ---@field btn_panel_report_yes UIKmlLuaControl
  35. ---@field btn_panel_report_no UIKmlLuaControl
  36. ---@field inMoneyAddButton UIKmlLuaControl
  37. ---@field nameMask UIKmlLuaControl
  38. ---@field reportMask UIKmlLuaControl
  39. ---@field panel_fund UIKmlLuaControl
  40. ---@field result_fund UIKmlLuaControl
  41. ---@field fundInput UIKmlLuaControl
  42. ---@field btn_donate UIKmlLuaControl
  43. ---@field exitButton UIKmlLuaControl
  44. ---@field btn_3DItem UIKmlLuaControl
  45. ---@field cost_item UIKmlLuaControl
  46. ---@field flag_img UIKmlLuaControl
  47. local KLUnionInfoPanelView = {}
  48. setmetatable(KLUnionInfoPanelView,UIKmlLuaViewBase)
  49. local kmlPath = 'dev/ui/Union/Panel/KLUnionInfo/KLUnionInfoPanelKml'
  50. KLUnionInfoPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  51. ---@param parent UIKmlLuaControl
  52. function KLUnionInfoPanelView:Init(parent)
  53. self:InitRoot(parent,kmlPath,KLUnionInfoPanelView.content)
  54. end
  55. return KLUnionInfoPanelView