KLMountDesPanelView.lua 598 B

12345678910111213141516
  1. ---@class KLMountDesPanelView:UIKmlLuaViewBase
  2. ---@field bgMask UIKmlLuaControl
  3. ---@field closeBtn UIKmlLuaControl
  4. ---@field ContentTxt UIKmlLuaControl
  5. ---@field title UIKmlLuaControl
  6. local KLMountDesPanelView = {}
  7. setmetatable(KLMountDesPanelView,UIKmlLuaViewBase)
  8. local kmlPath = 'dev/outui/Mount/Panel/KLMountDes/KLMountDesPanelKml'
  9. KLMountDesPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  10. ---@param parent UIKmlLuaControl
  11. function KLMountDesPanelView:Init(parent)
  12. self:InitRoot(parent,kmlPath,KLMountDesPanelView.content)
  13. end
  14. return KLMountDesPanelView