12345678910111213141516171819202122232425262728293031 |
- ---@class KLBagItemItemView:UIKmlLuaViewBase
- ---@field bag_item_ UIKmlLuaControl
- ---@field empty UIKmlLuaControl
- ---@field item_model_ UIKmlLuaControl
- ---@field fluoriteLevel_ UIKmlLuaControl
- ---@field strengthLevel_ UIKmlLuaControl
- ---@field appendLevel_ UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field selectImg UIKmlLuaControl
- ---@field selectTagImg UIKmlLuaControl
- ---@field quality_ UIKmlLuaControl
- ---@field wave1 UIKmlLuaControl
- ---@field wave2 UIKmlLuaControl
- ---@field wave3 UIKmlLuaControl
- ---@field wave4 UIKmlLuaControl
- ---@field holdImg_ UIKmlLuaControl
- ---@field tipsIcon_ UIKmlLuaControl
- ---@field arrow_ UIKmlLuaControl
- ---@field puton UIKmlLuaControl
- ---@field equipInfo UIKmlLuaControl
- local KLBagItemItemView = {}
- setmetatable(KLBagItemItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Common/Item/KLBagItem/KLBagItemItemKml'
- KLBagItemItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLBagItemItemView:Init(parent)
- self:InitRoot(parent,kmlPath,KLBagItemItemView.content)
- end
- return KLBagItemItemView
|