12345678910111213141516171819202122232425262728293031323334353637383940 |
- ---@class KLRedFortPanelView:UIKmlLuaViewBase
- ---@field root UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- ---@field img5 UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field img3 UIKmlLuaControl
- ---@field btnClose UIKmlLuaControl
- ---@field panel6 UIKmlLuaControl
- ---@field img4 UIKmlLuaControl
- ---@field text5 UIKmlLuaControl
- ---@field itemRoot UIKmlLuaControl
- ---@field panel16 UIKmlLuaControl
- ---@field img17 UIKmlLuaControl
- ---@field text18 UIKmlLuaControl
- ---@field textLevel UIKmlLuaControl
- ---@field panel19 UIKmlLuaControl
- ---@field img20 UIKmlLuaControl
- ---@field text21 UIKmlLuaControl
- ---@field textOpenTime UIKmlLuaControl
- ---@field panel22 UIKmlLuaControl
- ---@field img23 UIKmlLuaControl
- ---@field textActivityTime UIKmlLuaControl
- ---@field text24 UIKmlLuaControl
- ---@field panel28 UIKmlLuaControl
- ---@field img29 UIKmlLuaControl
- ---@field text30 UIKmlLuaControl
- ---@field textRule UIKmlLuaControl
- ---@field btnEnter UIKmlLuaControl
- local KLRedFortPanelView = {}
- setmetatable(KLRedFortPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLRedFort/KLRedFortPanelKml'
- KLRedFortPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLRedFortPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLRedFortPanelView.content)
- end
- return KLRedFortPanelView
|