12345678910111213141516171819202122 |
- ---@class KLFirstChargeADPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field arrow UIKmlLuaControl
- ---@field img4 UIKmlLuaControl
- ---@field model_icon UIKmlLuaControl
- ---@field text3 UIKmlLuaControl
- ---@field text5 UIKmlLuaControl
- ---@field text6 UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- ---@field DevilText UIKmlLuaControl
- ---@field CloseBtn UIKmlLuaControl
- local KLFirstChargeADPanelView = {}
- setmetatable(KLFirstChargeADPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/FirstCharge/Panel/KLFirstChargeAD/KLFirstChargeADPanelKml'
- KLFirstChargeADPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLFirstChargeADPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLFirstChargeADPanelView.content)
- end
- return KLFirstChargeADPanelView
|