123456789101112131415161718192021222324252627282930313233 |
- ---@class KLEquipUIPanelView:UIKmlLuaViewBase
- ---@field UIEquipPanel UIKmlLuaControl
- ---@field UIEquipPanel_Root UIKmlLuaControl
- ---@field panelNameText UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field CloseButton UIKmlLuaControl
- ---@field EquipGrid UIKmlLuaControl
- ---@field wearBarChange UIKmlLuaControl
- ---@field WearArchange UIKmlLuaControl
- ---@field MoneyList UIKmlLuaControl
- ---@field moneyBackground UIKmlLuaControl
- ---@field moneyText UIKmlLuaControl
- ---@field MUCoinBackground UIKmlLuaControl
- ---@field muCoinText UIKmlLuaControl
- ---@field MUBindCoinBackground UIKmlLuaControl
- ---@field muBindCoinText UIKmlLuaControl
- ---@field diamondBackground UIKmlLuaControl
- ---@field diamondText UIKmlLuaControl
- ---@field Grade UIKmlLuaControl
- ---@field WearBarList UIKmlLuaControl
- ---@field Content UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- local KLEquipUIPanelView = {}
- setmetatable(KLEquipUIPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Equip/Panel/KLEquipUI/KLEquipUIPanelKml'
- KLEquipUIPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLEquipUIPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLEquipUIPanelView.content)
- end
- return KLEquipUIPanelView
|