1234567891011121314151617 |
- ---@class KLUnionToggleListPanelView:UIKmlLuaViewBase
- ---@field ToggleUnionIcon UIKmlLuaControl
- ---@field joinToggle UIKmlLuaControl
- ---@field createToggle UIKmlLuaControl
- ---@field ToggleUnionInIcon UIKmlLuaControl
- ---@field infoToggle UIKmlLuaControl
- local KLUnionToggleListPanelView = {}
- setmetatable(KLUnionToggleListPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Union/Panel/KLUnionToggleList/KLUnionToggleListPanelKml'
- KLUnionToggleListPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUnionToggleListPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUnionToggleListPanelView.content)
- end
- return KLUnionToggleListPanelView
|