KLSelfSelectBoxItemView.lua 677 B

1234567891011121314151617
  1. ---@class KLSelfSelectBoxItemView:UIKmlLuaViewBase
  2. ---@field SelfBoxItemTemplate UIKmlLuaControl
  3. ---@field itemicon UIKmlLuaControl
  4. ---@field decbtn UIKmlLuaControl
  5. ---@field addbtn UIKmlLuaControl
  6. ---@field numbertext UIKmlLuaControl
  7. local KLSelfSelectBoxItemView = {}
  8. setmetatable(KLSelfSelectBoxItemView,UIKmlLuaViewBase)
  9. local kmlPath = 'dev/ui/ItemBase/Item/KLSelfSelectBox/KLSelfSelectBoxItemKml'
  10. KLSelfSelectBoxItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  11. ---@param parent UIKmlLuaControl
  12. function KLSelfSelectBoxItemView:Init(parent)
  13. self:InitRoot(parent,kmlPath,KLSelfSelectBoxItemView.content)
  14. end
  15. return KLSelfSelectBoxItemView