KLUnionToggleListPanelView.lua 720 B

1234567891011121314151617
  1. ---@class KLUnionToggleListPanelView:UIKmlLuaViewBase
  2. ---@field ToggleUnionIcon UIKmlLuaControl
  3. ---@field joinToggle UIKmlLuaControl
  4. ---@field createToggle UIKmlLuaControl
  5. ---@field ToggleUnionInIcon UIKmlLuaControl
  6. ---@field infoToggle UIKmlLuaControl
  7. local KLUnionToggleListPanelView = {}
  8. setmetatable(KLUnionToggleListPanelView,UIKmlLuaViewBase)
  9. local kmlPath = 'dev/ui/Union/Panel/KLUnionToggleList/KLUnionToggleListPanelKml'
  10. KLUnionToggleListPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  11. ---@param parent UIKmlLuaControl
  12. function KLUnionToggleListPanelView:Init(parent)
  13. self:InitRoot(parent,kmlPath,KLUnionToggleListPanelView.content)
  14. end
  15. return KLUnionToggleListPanelView