123456789101112131415161718192021222324252627282930 |
- ---@class KLRecoverPanelView:UIKmlLuaViewBase
- ---@field Mask UIKmlLuaControl
- ---@field KmlRecoverUI UIKmlLuaControl
- ---@field RecoverTypeGroup UIKmlLuaControl
- ---@field RecoverGet UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field TypeContent UIKmlLuaControl
- ---@field BtnRecover UIKmlLuaControl
- ---@field closeBtn UIKmlLuaControl
- ---@field AutoPickToggle UIKmlLuaControl
- ---@field AutoPickToggleText UIKmlLuaControl
- ---@field AutoRecoverToggle UIKmlLuaControl
- ---@field AutoRecoverToggleText UIKmlLuaControl
- ---@field scrollview1 UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field loopscrollviewData UIKmlLuaControl
- ---@field TextTitle UIKmlLuaControl
- ---@field privilege_tip UIKmlLuaControl
- local KLRecoverPanelView = {}
- setmetatable(KLRecoverPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Recover/Panel/KLRecover/KLRecoverPanelKml'
- KLRecoverPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLRecoverPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLRecoverPanelView.content)
- end
- return KLRecoverPanelView
|