12345678910111213141516171819 |
- ---@class KLArchangelMasterPanelView:UIKmlLuaViewBase
- ---@field mask UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field scrollview4 UIKmlLuaControl
- ---@field layout5 UIKmlLuaControl
- ---@field suit_datalist UIKmlLuaControl
- ---@field close UIKmlLuaControl
- ---@field title UIKmlLuaControl
- local KLArchangelMasterPanelView = {}
- setmetatable(KLArchangelMasterPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Archangel/Panel/KLArchangelMaster/KLArchangelMasterPanelKml'
- KLArchangelMasterPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLArchangelMasterPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLArchangelMasterPanelView.content)
- end
- return KLArchangelMasterPanelView
|