123456789101112131415161718 |
- ---@class KLPickUpPanelView:UIKmlLuaViewBase
- ---@field titleBg UIKmlLuaControl
- ---@field point UIKmlLuaControl
- ---@field titleTxt UIKmlLuaControl
- ---@field pickItemList UIKmlLuaControl
- ---@field BtnReDefault UIKmlLuaControl
- ---@field BtnReDefaultTxt UIKmlLuaControl
- local KLPickUpPanelView = {}
- setmetatable(KLPickUpPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Setting/Panel/KLPickUp/KLPickUpPanelKml'
- KLPickUpPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLPickUpPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLPickUpPanelView.content)
- end
- return KLPickUpPanelView
|