KLUnionJoinPanelView.lua 995 B

1234567891011121314151617181920212223242526
  1. ---@class KLUnionJoinPanelView:UIKmlLuaViewBase
  2. ---@field img_27 UIKmlLuaControl
  3. ---@field title UIKmlLuaControl
  4. ---@field closeBtn UIKmlLuaControl
  5. ---@field table_title_bg UIKmlLuaControl
  6. ---@field title_name UIKmlLuaControl
  7. ---@field title_name UIKmlLuaControl
  8. ---@field title_name UIKmlLuaControl
  9. ---@field title_name UIKmlLuaControl
  10. ---@field table_bg UIKmlLuaControl
  11. ---@field table_list UIKmlLuaControl
  12. ---@field union_list_view UIKmlLuaControl
  13. ---@field union_data_list UIKmlLuaControl
  14. ---@field one_key_apply_to_join UIKmlLuaControl
  15. ---@field btn_text UIKmlLuaControl
  16. local KLUnionJoinPanelView = {}
  17. setmetatable(KLUnionJoinPanelView,UIKmlLuaViewBase)
  18. local kmlPath = 'dev/ui/Union/Panel/KLUnionJoin/KLUnionJoinPanelKml'
  19. KLUnionJoinPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  20. ---@param parent UIKmlLuaControl
  21. function KLUnionJoinPanelView:Init(parent)
  22. self:InitRoot(parent,kmlPath,KLUnionJoinPanelView.content)
  23. end
  24. return KLUnionJoinPanelView