KLBoxPrivilegeItemView.lua 610 B

123456789101112131415
  1. ---@class KLBoxPrivilegeItemView:UIKmlLuaViewBase
  2. ---@field toggle_privilege UIKmlLuaControl
  3. ---@field select_toggle UIKmlLuaControl
  4. ---@field text_privilege UIKmlLuaControl
  5. local KLBoxPrivilegeItemView = {}
  6. setmetatable(KLBoxPrivilegeItemView,UIKmlLuaViewBase)
  7. local kmlPath = 'dev/ui/MiracleBox/Item/KLBoxPrivilege/KLBoxPrivilegeItemKml'
  8. KLBoxPrivilegeItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  9. ---@param parent UIKmlLuaControl
  10. function KLBoxPrivilegeItemView:Init(parent)
  11. self:InitRoot(parent,kmlPath,KLBoxPrivilegeItemView.content)
  12. end
  13. return KLBoxPrivilegeItemView