KLShortcurKeyExplainPanelView.lua 687 B

12345678910111213141516
  1. ---@class KLShortcurKeyExplainPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field text2 UIKmlLuaControl
  4. ---@field layout1 UIKmlLuaControl
  5. ---@field datalist3 UIKmlLuaControl
  6. local KLShortcurKeyExplainPanelView = {}
  7. setmetatable(KLShortcurKeyExplainPanelView,UIKmlLuaViewBase)
  8. local kmlPath = 'dev/outui/PCPlatform/Panel/KLShortcurKeyExplain/KLShortcurKeyExplainPanelKml'
  9. KLShortcurKeyExplainPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  10. ---@param parent UIKmlLuaControl
  11. function KLShortcurKeyExplainPanelView:Init(parent)
  12. self:InitRoot(parent,kmlPath,KLShortcurKeyExplainPanelView.content)
  13. end
  14. return KLShortcurKeyExplainPanelView