12345678910111213141516171819202122232425262728293031 |
- ---@class KLEquipJewelryActivePanelView:UIKmlLuaViewBase
- ---@field panel2 UIKmlLuaControl
- ---@field maskBtn UIKmlLuaControl
- ---@field img3 UIKmlLuaControl
- ---@field scrollview1 UIKmlLuaControl
- ---@field gridview15 UIKmlLuaControl
- ---@field cost_list UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- ---@field text3 UIKmlLuaControl
- ---@field Level UIKmlLuaControl
- ---@field img4 UIKmlLuaControl
- ---@field text5 UIKmlLuaControl
- ---@field Add UIKmlLuaControl
- ---@field img8 UIKmlLuaControl
- ---@field count UIKmlLuaControl
- ---@field itemModel UIKmlLuaControl
- ---@field ActiveBtn UIKmlLuaControl
- ---@field CloseBtn UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field activeIcon UIKmlLuaControl
- local KLEquipJewelryActivePanelView = {}
- setmetatable(KLEquipJewelryActivePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Equip/Panel/KLEquipJewelryActive/KLEquipJewelryActivePanelKml'
- KLEquipJewelryActivePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLEquipJewelryActivePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLEquipJewelryActivePanelView.content)
- end
- return KLEquipJewelryActivePanelView
|