12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- ---@class KLEquipAppendUIPanelView:UIKmlLuaViewBase
- ---@field panel1 UIKmlLuaControl
- ---@field BG UIKmlLuaControl
- ---@field Title UIKmlLuaControl
- ---@field BGInner_2 UIKmlLuaControl
- ---@field ToggleGroupSource UIKmlLuaControl
- ---@field equipBtn UIKmlLuaControl
- ---@field bagBtn UIKmlLuaControl
- ---@field CloseButton UIKmlLuaControl
- ---@field appendMasterBtn UIKmlLuaControl
- ---@field strengthIcon UIKmlLuaControl
- ---@field equipAttribute UIKmlLuaControl
- ---@field arrContent UIKmlLuaControl
- ---@field gridview3 UIKmlLuaControl
- ---@field strength_list UIKmlLuaControl
- ---@field strengthIcon_1 UIKmlLuaControl
- ---@field text11 UIKmlLuaControl
- ---@field StrengthCustomScrollView UIKmlLuaControl
- ---@field gridview15 UIKmlLuaControl
- ---@field cost_list UIKmlLuaControl
- ---@field strengthButton UIKmlLuaControl
- ---@field failTips UIKmlLuaControl
- ---@field strengthLevelBg UIKmlLuaControl
- ---@field strengthIntro UIKmlLuaControl
- ---@field preLevel UIKmlLuaControl
- ---@field arrow UIKmlLuaControl
- ---@field nextLevel UIKmlLuaControl
- ---@field equipName UIKmlLuaControl
- ---@field line_1 UIKmlLuaControl
- ---@field line_2 UIKmlLuaControl
- ---@field liuguangInfo UIKmlLuaControl
- ---@field successIcon UIKmlLuaControl
- ---@field baseSuccessRatioText UIKmlLuaControl
- ---@field maxStrengthLevelBg UIKmlLuaControl
- ---@field maxStrengthIntro UIKmlLuaControl
- ---@field maxLevel UIKmlLuaControl
- ---@field maxLevelTips UIKmlLuaControl
- ---@field noticeText UIKmlLuaControl
- ---@field item_model UIKmlLuaControl
- ---@field append_fail UIKmlLuaControl
- ---@field append_ok UIKmlLuaControl
- local KLEquipAppendUIPanelView = {}
- setmetatable(KLEquipAppendUIPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Equip/Panel/KLEquipAppendUI/KLEquipAppendUIPanelKml'
- KLEquipAppendUIPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLEquipAppendUIPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLEquipAppendUIPanelView.content)
- end
- return KLEquipAppendUIPanelView
|