12345678910111213141516171819202122 |
- ---@class KLMountStorePanelView:UIKmlLuaViewBase
- ---@field closeBtn UIKmlLuaControl
- ---@field attInfoRoot UIKmlLuaControl
- ---@field att_list UIKmlLuaControl
- ---@field btnRoot UIKmlLuaControl
- ---@field onMount UIKmlLuaControl
- ---@field mountInfoRoot UIKmlLuaControl
- ---@field mount_all_info_list UIKmlLuaControl
- ---@field mount_info_scrollview UIKmlLuaControl
- ---@field expandBtn UIKmlLuaControl
- ---@field foldBtn UIKmlLuaControl
- local KLMountStorePanelView = {}
- setmetatable(KLMountStorePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Mount/Panel/KLMountStore/KLMountStorePanelKml'
- KLMountStorePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMountStorePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLMountStorePanelView.content)
- end
- return KLMountStorePanelView
|