123456789101112131415161718 |
- ---@class KLUILoadingPanelPanelView:UIKmlLuaViewBase
- ---@field UILoadingPanel UIKmlLuaControl
- ---@field RawImage_Background UIKmlLuaControl
- ---@field Image_ProgressBG UIKmlLuaControl
- ---@field Image_Progress UIKmlLuaControl
- ---@field Text_Message UIKmlLuaControl
- local KLUILoadingPanelPanelView = {}
- setmetatable(KLUILoadingPanelPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/LoadingPanel/Panel/KLUILoadingPanel/KLUILoadingPanelPanelKml'
- KLUILoadingPanelPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUILoadingPanelPanelView:Init(parent)
- --local p = parent and parent.kmlControl
- --self.root = UIKmlLuaControl(CS.KmlResourceManager.Create(p,kmlPath,KLUILoadingPanelPanelView.content))
- self:InitRoot(parent,kmlPath,KLUILoadingPanelPanelView.content)
- end
- return KLUILoadingPanelPanelView
|