123456789101112 |
- ---@class KLAppearPreviewPanelView:UIKmlLuaViewBase
- local KLAppearPreviewPanelView = {}
- setmetatable(KLAppearPreviewPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/AppearGroup/Panel/KLAppearPreview/KLAppearPreviewPanelKml'
- KLAppearPreviewPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLAppearPreviewPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLAppearPreviewPanelView.content)
- end
- return KLAppearPreviewPanelView
|