KLUnionMemberListPanelView.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ---@class KLUnionMemberListPanelView:UIKmlLuaViewBase
  2. ---@field img_12 UIKmlLuaControl
  3. ---@field title UIKmlLuaControl
  4. ---@field closeBtn UIKmlLuaControl
  5. ---@field table_title_bg UIKmlLuaControl
  6. ---@field title_name UIKmlLuaControl
  7. ---@field title_level UIKmlLuaControl
  8. ---@field text_18 UIKmlLuaControl
  9. ---@field level_sort_up UIKmlLuaControl
  10. ---@field level_sort_up_black UIKmlLuaControl
  11. ---@field level_sort_down UIKmlLuaControl
  12. ---@field level_sort_down_black UIKmlLuaControl
  13. ---@field title_position UIKmlLuaControl
  14. ---@field text_24 UIKmlLuaControl
  15. ---@field position_sort_up UIKmlLuaControl
  16. ---@field position_sort_up_black UIKmlLuaControl
  17. ---@field position_sort_down UIKmlLuaControl
  18. ---@field position_sort_down_black UIKmlLuaControl
  19. ---@field title_state UIKmlLuaControl
  20. ---@field text_30 UIKmlLuaControl
  21. ---@field state_sort_up UIKmlLuaControl
  22. ---@field state_sort_up_black UIKmlLuaControl
  23. ---@field state_sort_down UIKmlLuaControl
  24. ---@field state_sort_down_black UIKmlLuaControl
  25. ---@field table_panel UIKmlLuaControl
  26. ---@field table_list UIKmlLuaControl
  27. ---@field union_list_view UIKmlLuaControl
  28. ---@field union_data_list UIKmlLuaControl
  29. ---@field shen_he UIKmlLuaControl
  30. ---@field btn_text UIKmlLuaControl
  31. ---@field shen_heTip UIKmlLuaControl
  32. ---@field tips UIKmlLuaControl
  33. ---@field on_line_tips UIKmlLuaControl
  34. local KLUnionMemberListPanelView = {}
  35. setmetatable(KLUnionMemberListPanelView,UIKmlLuaViewBase)
  36. local kmlPath = 'dev/ui/Union/Panel/KLUnionMemberList/KLUnionMemberListPanelKml'
  37. KLUnionMemberListPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  38. ---@param parent UIKmlLuaControl
  39. function KLUnionMemberListPanelView:Init(parent)
  40. self:InitRoot(parent,kmlPath,KLUnionMemberListPanelView.content)
  41. end
  42. return KLUnionMemberListPanelView