KLSelfSelectBoxPanelView.lua 816 B

123456789101112131415161718192021
  1. ---@class KLSelfSelectBoxPanelView:UIKmlLuaViewBase
  2. ---@field mask UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field text4 UIKmlLuaControl
  5. ---@field NumText UIKmlLuaControl
  6. ---@field scrollview UIKmlLuaControl
  7. ---@field ItemLayout UIKmlLuaControl
  8. ---@field loopscrollviewData UIKmlLuaControl
  9. ---@field btnclose UIKmlLuaControl
  10. ---@field btnopen UIKmlLuaControl
  11. local KLSelfSelectBoxPanelView = {}
  12. setmetatable(KLSelfSelectBoxPanelView,UIKmlLuaViewBase)
  13. local kmlPath = 'dev/ui/ItemBase/Panel/KLSelfSelectBox/KLSelfSelectBoxPanelKml'
  14. KLSelfSelectBoxPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  15. ---@param parent UIKmlLuaControl
  16. function KLSelfSelectBoxPanelView:Init(parent)
  17. self:InitRoot(parent,kmlPath,KLSelfSelectBoxPanelView.content)
  18. end
  19. return KLSelfSelectBoxPanelView