12345678910111213141516171819 |
- ---@class KLQuintonInvasionJoinPanelView:UIKmlLuaViewBase
- ---@field enterTimeDes UIKmlLuaControl
- ---@field enterLevel UIKmlLuaControl
- ---@field activity_des UIKmlLuaControl
- ---@field rewardList UIKmlLuaControl
- ---@field rewardBtn UIKmlLuaControl
- ---@field enterBtn UIKmlLuaControl
- ---@field shopBtn UIKmlLuaControl
- local KLQuintonInvasionJoinPanelView = {}
- setmetatable(KLQuintonInvasionJoinPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Panel/KLQuintonInvasionJoin/KLQuintonInvasionJoinPanelKml'
- KLQuintonInvasionJoinPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLQuintonInvasionJoinPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLQuintonInvasionJoinPanelView.content)
- end
- return KLQuintonInvasionJoinPanelView
|