KLCrossServerIntroducePanelView.lua 731 B

1234567891011121314151617
  1. ---@class KLCrossServerIntroducePanelView:UIKmlLuaViewBase
  2. ---@field root_panel UIKmlLuaControl
  3. ---@field trade_bg UIKmlLuaControl
  4. ---@field img_interface UIKmlLuaControl
  5. ---@field btn_close UIKmlLuaControl
  6. local KLCrossServerIntroducePanelView = {}
  7. setmetatable( KLCrossServerIntroducePanelView,UIKmlLuaViewBase)
  8. local kmlPath = 'dev/outui/CrossServer/Panel/KLCrossServerIntroduce/KLCrossServerIntroducePanelKml'
  9. KLCrossServerIntroducePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  10. ---@param parent UIKmlLuaControl
  11. function KLCrossServerIntroducePanelView:Init(parent)
  12. self:InitRoot(parent,kmlPath, KLCrossServerIntroducePanelView.content)
  13. end
  14. return KLCrossServerIntroducePanelView