KLMountStorePanelView.lua 859 B

12345678910111213141516171819202122
  1. ---@class KLMountStorePanelView:UIKmlLuaViewBase
  2. ---@field closeBtn UIKmlLuaControl
  3. ---@field attInfoRoot UIKmlLuaControl
  4. ---@field att_list UIKmlLuaControl
  5. ---@field btnRoot UIKmlLuaControl
  6. ---@field onMount UIKmlLuaControl
  7. ---@field mountInfoRoot UIKmlLuaControl
  8. ---@field mount_all_info_list UIKmlLuaControl
  9. ---@field mount_info_scrollview UIKmlLuaControl
  10. ---@field expandBtn UIKmlLuaControl
  11. ---@field foldBtn UIKmlLuaControl
  12. local KLMountStorePanelView = {}
  13. setmetatable(KLMountStorePanelView,UIKmlLuaViewBase)
  14. local kmlPath = 'dev/outui/Mount/Panel/KLMountStore/KLMountStorePanelKml'
  15. KLMountStorePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  16. ---@param parent UIKmlLuaControl
  17. function KLMountStorePanelView:Init(parent)
  18. self:InitRoot(parent,kmlPath,KLMountStorePanelView.content)
  19. end
  20. return KLMountStorePanelView