KLArchangelMasterPanelView.lua 764 B

12345678910111213141516171819
  1. ---@class KLArchangelMasterPanelView:UIKmlLuaViewBase
  2. ---@field mask UIKmlLuaControl
  3. ---@field bg UIKmlLuaControl
  4. ---@field scrollview4 UIKmlLuaControl
  5. ---@field layout5 UIKmlLuaControl
  6. ---@field suit_datalist UIKmlLuaControl
  7. ---@field close UIKmlLuaControl
  8. ---@field title UIKmlLuaControl
  9. local KLArchangelMasterPanelView = {}
  10. setmetatable(KLArchangelMasterPanelView,UIKmlLuaViewBase)
  11. local kmlPath = 'dev/outui/Archangel/Panel/KLArchangelMaster/KLArchangelMasterPanelKml'
  12. KLArchangelMasterPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  13. ---@param parent UIKmlLuaControl
  14. function KLArchangelMasterPanelView:Init(parent)
  15. self:InitRoot(parent,kmlPath,KLArchangelMasterPanelView.content)
  16. end
  17. return KLArchangelMasterPanelView