12345678910111213141516171819202122 |
- ---@class KLMountPreferencePanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field CloseBtn UIKmlLuaControl
- ---@field TopImage UIKmlLuaControl
- ---@field BuyBtn UIKmlLuaControl
- ---@field TipsBtn UIKmlLuaControl
- ---@field TimerText UIKmlLuaControl
- ---@field OriginalPriceText UIKmlLuaControl
- ---@field Line UIKmlLuaControl
- ---@field ItemModel UIKmlLuaControl
- ---@field Model UIKmlLuaControl
- local KLMountPreferencePanelView = {}
- setmetatable(KLMountPreferencePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MountPreference/Panel/KLMountPreference/KLMountPreferencePanelKml'
- KLMountPreferencePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMountPreferencePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLMountPreferencePanelView.content)
- end
- return KLMountPreferencePanelView
|