1234567891011121314151617181920212223 |
- ---@class KLArcWeapActivityPanelView:UIKmlLuaViewBase
- ---@field ArcWeapPanel UIKmlLuaControl
- ---@field TopPart UIKmlLuaControl
- ---@field txt_tips UIKmlLuaControl
- ---@field txt_showTime UIKmlLuaControl
- ---@field reward UIKmlLuaControl
- ---@field model UIKmlLuaControl
- ---@field btn_getBigReward UIKmlLuaControl
- ---@field MiddlePart UIKmlLuaControl
- ---@field scrollview_show UIKmlLuaControl
- ---@field layout6 UIKmlLuaControl
- ---@field showInfoList UIKmlLuaControl
- local KLArcWeapActivityPanelView = {}
- setmetatable(KLArcWeapActivityPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MainActivity/Panel/KLArcWeapActivity/KLArcWeapActivityPanelKml'
- KLArcWeapActivityPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLArcWeapActivityPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLArcWeapActivityPanelView.content)
- end
- return KLArcWeapActivityPanelView
|