123456789101112131415161718192021222324252627 |
- ---@class KLUILeftUpPanelView:UIKmlLuaViewBase
- ---@field activityRoot UIKmlLuaControl
- ---@field expandBtn UIKmlLuaControl
- ---@field foldBtn UIKmlLuaControl
- ---@field palyerInfo UIKmlLuaControl
- ---@field combat_powerBg UIKmlLuaControl
- ---@field combat_powerIcon UIKmlLuaControl
- ---@field combat_power UIKmlLuaControl
- ---@field defenseIcon UIKmlLuaControl
- ---@field defense UIKmlLuaControl
- ---@field toggleGroupTop UIKmlLuaControl
- ---@field taskToggle UIKmlLuaControl
- ---@field teamToggle UIKmlLuaControl
- ---@field jewelryTaskBtn UIKmlLuaControl
- ---@field announceBtn UIKmlLuaControl
- ---@field tabObjRoot UIKmlLuaControl
- local KLUILeftUpPanelView = {}
- setmetatable(KLUILeftUpPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/MainUI/Panel/KLUILeftUp/KLUILeftUpPanelKml'
- KLUILeftUpPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUILeftUpPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUILeftUpPanelView.content)
- end
- return KLUILeftUpPanelView
|