KLUIChallengeBossSelectBtnItemView.lua 775 B

1234567891011121314151617
  1. ---@class KLUIChallengeBossSelectBtnItemView:UIKmlLuaViewBase
  2. ---@field btn UIKmlLuaControl
  3. ---@field level_select UIKmlLuaControl
  4. ---@field touxiang UIKmlLuaControl
  5. ---@field name UIKmlLuaControl
  6. ---@field level UIKmlLuaControl
  7. local KLUIChallengeBossSelectBtnItemView = {}
  8. setmetatable(KLUIChallengeBossSelectBtnItemView,UIKmlLuaViewBase)
  9. local kmlPath = 'dev/outui/ChallengeBoss/Item/KLUIChallengeBossSelectBtnItem/KLUIChallengeBossSelectBtnItemKml'
  10. KLUIChallengeBossSelectBtnItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  11. ---@param parent UIKmlLuaControl
  12. function KLUIChallengeBossSelectBtnItemView:Init(parent)
  13. self:InitRoot(parent,kmlPath,KLUIChallengeBossSelectBtnItemView.content)
  14. end
  15. return KLUIChallengeBossSelectBtnItemView