1234567891011121314151617181920212223 |
- ---@class KLMountTipPanelView:UIKmlLuaViewBase
- ---@field title UIKmlLuaControl
- ---@field careerName UIKmlLuaControl
- ---@field item_model UIKmlLuaControl
- ---@field mount_model UIKmlLuaControl
- ---@field attList UIKmlLuaControl
- ---@field cancelBtn UIKmlLuaControl
- ---@field takeOffBtn UIKmlLuaControl
- ---@field putOnBtn UIKmlLuaControl
- ---@field putOnStoreBtn UIKmlLuaControl
- ---@field takeOutStoreBtn UIKmlLuaControl
- ---@field bgMask UIKmlLuaControl
- local KLMountTipPanelView = {}
- setmetatable(KLMountTipPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Mount/Panel/KLMountTip/KLMountTipPanelKml'
- KLMountTipPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMountTipPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLMountTipPanelView.content)
- end
- return KLMountTipPanelView
|