12345678910111213141516 |
- ---@class KLShortcurKeyExplainPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field text2 UIKmlLuaControl
- ---@field layout1 UIKmlLuaControl
- ---@field datalist3 UIKmlLuaControl
- local KLShortcurKeyExplainPanelView = {}
- setmetatable(KLShortcurKeyExplainPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/PCPlatform/Panel/KLShortcurKeyExplain/KLShortcurKeyExplainPanelKml'
- KLShortcurKeyExplainPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLShortcurKeyExplainPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLShortcurKeyExplainPanelView.content)
- end
- return KLShortcurKeyExplainPanelView
|