1234567891011121314151617181920 |
- ---@class KLUISystemTopPanelView:UIKmlLuaViewBase
- ---@field left UIKmlLuaControl
- ---@field sysExpand UIKmlLuaControl
- ---@field sysFold UIKmlLuaControl
- ---@field systemContainer UIKmlLuaControl
- ---@field systemMenu UIKmlLuaControl
- ---@field bossBtn UIKmlLuaControl
- ---@field sysFoldClickBg UIKmlLuaControl
- ---@field sysExpandClickBg UIKmlLuaControl
- local KLUISystemTopPanelView = {}
- setmetatable(KLUISystemTopPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/MainUI/Panel/KLUISystemTop/KLUISystemTopPanelKml'
- KLUISystemTopPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUISystemTopPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUISystemTopPanelView.content)
- end
- return KLUISystemTopPanelView
|