1234567891011121314151617 |
- ---@class KLUIChallengeBossSelectBtnItemView:UIKmlLuaViewBase
- ---@field btn UIKmlLuaControl
- ---@field level_select UIKmlLuaControl
- ---@field touxiang UIKmlLuaControl
- ---@field name UIKmlLuaControl
- ---@field level UIKmlLuaControl
- local KLUIChallengeBossSelectBtnItemView = {}
- setmetatable(KLUIChallengeBossSelectBtnItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/ChallengeBoss/Item/KLUIChallengeBossSelectBtnItem/KLUIChallengeBossSelectBtnItemKml'
- KLUIChallengeBossSelectBtnItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIChallengeBossSelectBtnItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIChallengeBossSelectBtnItemView.content)
- end
- return KLUIChallengeBossSelectBtnItemView
|