123456789101112131415161718192021 |
- ---@class KLFastItemView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field shortcut_item UIKmlLuaControl
- ---@field noItem UIKmlLuaControl
- ---@field useBtn UIKmlLuaControl
- ---@field add_img_0 UIKmlLuaControl
- ---@field add_img UIKmlLuaControl
- ---@field control_circlebar UIKmlLuaControl
- ---@field noItem UIKmlLuaControl
- ---@field fastItemTip UIKmlLuaControl
- local KLFastItemView = {}
- setmetatable(KLFastItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/MainUI/Item/KLFast/KLFastItemKml'
- KLFastItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLFastItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLFastItemView.content)
- end
- return KLFastItemView
|