12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- ---@class KLEquipJewelryPanelView:UIKmlLuaViewBase
- ---@field panel1 UIKmlLuaControl
- ---@field BG UIKmlLuaControl
- ---@field tips UIKmlLuaControl
- ---@field bg2 UIKmlLuaControl
- ---@field BGInner_2 UIKmlLuaControl
- ---@field item_model UIKmlLuaControl
- ---@field equipName UIKmlLuaControl
- ---@field line_1 UIKmlLuaControl
- ---@field line_2 UIKmlLuaControl
- ---@field success_ok UIKmlLuaControl
- ---@field success_anim UIKmlLuaControl
- ---@field successText UIKmlLuaControl
- ---@field maxLevelTips UIKmlLuaControl
- ---@field LevelButton UIKmlLuaControl
- ---@field LevelButtonRedPoint UIKmlLuaControl
- ---@field strengthLevelBg UIKmlLuaControl
- ---@field strengthIntro UIKmlLuaControl
- ---@field preLevel UIKmlLuaControl
- ---@field arrow UIKmlLuaControl
- ---@field nextLevel UIKmlLuaControl
- ---@field LevelIcon UIKmlLuaControl
- ---@field equipAttribute UIKmlLuaControl
- ---@field arrContent UIKmlLuaControl
- ---@field gridview3 UIKmlLuaControl
- ---@field Attr_list UIKmlLuaControl
- ---@field Excellenceicon UIKmlLuaControl
- ---@field text11 UIKmlLuaControl
- ---@field scrollView UIKmlLuaControl
- ---@field gridview15 UIKmlLuaControl
- ---@field Exce_list UIKmlLuaControl
- ---@field Material UIKmlLuaControl
- ---@field text3 UIKmlLuaControl
- ---@field scrollview4 UIKmlLuaControl
- ---@field gridview5 UIKmlLuaControl
- ---@field cost_List UIKmlLuaControl
- ---@field Title UIKmlLuaControl
- ---@field CloseBtn UIKmlLuaControl
- local KLEquipJewelryPanelView = {}
- setmetatable(KLEquipJewelryPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Equip/Panel/KLEquipJewelry/KLEquipJewelryPanelKml'
- KLEquipJewelryPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLEquipJewelryPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLEquipJewelryPanelView.content)
- end
- return KLEquipJewelryPanelView
|