KLCrossServerPanelView.lua 1.1 KB

123456789101112131415161718192021222324252627
  1. ---@class KLCrossServerPanelView:UIKmlLuaViewBase
  2. ---@field root_panel UIKmlLuaControl
  3. ---@field mask UIKmlLuaControl
  4. ---@field trade_bg UIKmlLuaControl
  5. ---@field btn_close UIKmlLuaControl
  6. ---@field img_16 UIKmlLuaControl
  7. ---@field boss_type_toggle_group UIKmlLuaControl
  8. ---@field butten_layout UIKmlLuaControl
  9. ---@field type_1 UIKmlLuaControl
  10. ---@field type_1_toggle UIKmlLuaControl
  11. ---@field text_21 UIKmlLuaControl
  12. ---@field activity_panel UIKmlLuaControl
  13. ---@field activity_panel_select UIKmlLuaControl
  14. ---@field activity_panel_layout UIKmlLuaControl
  15. ---@field activity_panel_dl UIKmlLuaControl
  16. ---@field desBtn UIKmlLuaControl
  17. local KLCrossServerPanellView = {}
  18. setmetatable( KLCrossServerPanellView,UIKmlLuaViewBase)
  19. local kmlPath = 'dev/outui/CrossServer/Panel/KLCrossServerMain/KLCrossServerPanelKml'
  20. KLCrossServerPanellView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  21. ---@param parent UIKmlLuaControl
  22. function KLCrossServerPanellView:Init(parent)
  23. self:InitRoot(parent,kmlPath, KLCrossServerPanellView.content)
  24. end
  25. return KLCrossServerPanellView