123456789101112131415161718192021222324 |
- ---@class KLFastItemView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field shortcut_item UIKmlLuaControl
- ---@field noItem UIKmlLuaControl
- ---@field fastItemTip UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field img3 UIKmlLuaControl
- ---@field text4 UIKmlLuaControl
- ---@field useBtn UIKmlLuaControl
- ---@field add_img_0 UIKmlLuaControl
- ---@field add_img UIKmlLuaControl
- ---@field control_circlebar UIKmlLuaControl
- ---@field keyCodeTxt UIKmlLuaControl
- local KLFastItemView = {}
- setmetatable(KLFastItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/MainUI/Item/KLFast_PC/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
|