1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- ---@class KLArmbandUpgradePanelView:UIKmlLuaViewBase
- ---@field bottomArmbandBg UIKmlLuaControl
- ---@field title UIKmlLuaControl
- ---@field CloseButton UIKmlLuaControl
- ---@field UpgradeBtn UIKmlLuaControl
- ---@field StrengthenBtn UIKmlLuaControl
- ---@field armbandBg UIKmlLuaControl
- ---@field armbandicon UIKmlLuaControl
- ---@field armbandname UIKmlLuaControl
- ---@field layout_armbandstar UIKmlLuaControl
- ---@field datalist_armbandstar UIKmlLuaControl
- ---@field KmlEquipReborn UIKmlLuaControl
- ---@field equipbg UIKmlLuaControl
- ---@field strengthIntro UIKmlLuaControl
- ---@field preLevel UIKmlLuaControl
- ---@field arrow UIKmlLuaControl
- ---@field nextLevel UIKmlLuaControl
- ---@field resultAnim UIKmlLuaControl
- ---@field resultLv UIKmlLuaControl
- ---@field resultAnimText UIKmlLuaControl
- ---@field title_di UIKmlLuaControl
- ---@field arr_title UIKmlLuaControl
- ---@field armbandArrview UIKmlLuaControl
- ---@field armbandlayout UIKmlLuaControl
- ---@field arrData_list UIKmlLuaControl
- ---@field fulllevelCost UIKmlLuaControl
- ---@field armbandtip UIKmlLuaControl
- ---@field costBg UIKmlLuaControl
- ---@field costItem UIKmlLuaControl
- ---@field costName UIKmlLuaControl
- ---@field costNum UIKmlLuaControl
- ---@field costAdd UIKmlLuaControl
- ---@field OperateBtn UIKmlLuaControl
- ---@field btntip UIKmlLuaControl
- ---@field fulllevel UIKmlLuaControl
- ---@field btnarmtip UIKmlLuaControl
- local KLArmbandUpgradePanelView = {}
- setmetatable(KLArmbandUpgradePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Union/Panel/KLArmbandUpgrade/KLArmbandUpgradePanelKml'
- KLArmbandUpgradePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLArmbandUpgradePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLArmbandUpgradePanelView.content)
- end
- return KLArmbandUpgradePanelView
|