KLUISystemTopPanelView.lua 784 B

1234567891011121314151617181920
  1. ---@class KLUISystemTopPanelView:UIKmlLuaViewBase
  2. ---@field left UIKmlLuaControl
  3. ---@field sysExpand UIKmlLuaControl
  4. ---@field sysFold UIKmlLuaControl
  5. ---@field systemContainer UIKmlLuaControl
  6. ---@field systemMenu UIKmlLuaControl
  7. ---@field bossBtn UIKmlLuaControl
  8. ---@field sysFoldClickBg UIKmlLuaControl
  9. ---@field sysExpandClickBg UIKmlLuaControl
  10. local KLUISystemTopPanelView = {}
  11. setmetatable(KLUISystemTopPanelView,UIKmlLuaViewBase)
  12. local kmlPath = 'dev/ui/MainUI/Panel/KLUISystemTop/KLUISystemTopPanelKml'
  13. KLUISystemTopPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  14. ---@param parent UIKmlLuaControl
  15. function KLUISystemTopPanelView:Init(parent)
  16. self:InitRoot(parent,kmlPath,KLUISystemTopPanelView.content)
  17. end
  18. return KLUISystemTopPanelView