1234567891011121314151617181920212223242526272829303132333435363738 |
- ---@class KLEquipDecomposeUIPanelView:UIKmlLuaViewBase
- ---@field prefab_299 UIKmlLuaControl
- ---@field BG UIKmlLuaControl
- ---@field CloseButton UIKmlLuaControl
- ---@field HelpButton UIKmlLuaControl
- ---@field Info UIKmlLuaControl
- ---@field DecomposeButton UIKmlLuaControl
- ---@field DecomposeButtonText UIKmlLuaControl
- ---@field NoInfo UIKmlLuaControl
- ---@field decoIcon UIKmlLuaControl
- ---@field decoIconLineR UIKmlLuaControl
- ---@field decoIconLineL UIKmlLuaControl
- ---@field decoIcon_1 UIKmlLuaControl
- ---@field decoIcon_1_Icon UIKmlLuaControl
- ---@field decoIcon_1_Text UIKmlLuaControl
- ---@field ChooseTypeScroll UIKmlLuaControl
- ---@field ChooseTypeCount UIKmlLuaControl
- ---@field DecomposeGetScrollView UIKmlLuaControl
- ---@field DecomposeGetCount UIKmlLuaControl
- ---@field DecomposeGetDataList UIKmlLuaControl
- ---@field DecomposeCustomScrollView UIKmlLuaControl
- ---@field DecomposeCustomCount UIKmlLuaControl
- ---@field DecomposeCustomDataList UIKmlLuaControl
- ---@field EquipBg UIKmlLuaControl
- ---@field EquipScrollView UIKmlLuaControl
- ---@field gridview2 UIKmlLuaControl
- ---@field EquipList UIKmlLuaControl
- local KLEquipDecomposeUIPanelView = {}
- setmetatable(KLEquipDecomposeUIPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Equip/Panel/KLEquipDecomposeUI/KLEquipDecomposeUIPanelKml'
- KLEquipDecomposeUIPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLEquipDecomposeUIPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLEquipDecomposeUIPanelView.content)
- end
- return KLEquipDecomposeUIPanelView
|