1234567891011121314151617181920212223 |
- ---@class KLUIForgeGroupPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field MaskCloseButton UIKmlLuaControl
- ---@field toggleGroup UIKmlLuaControl
- ---@field strengthToggle UIKmlLuaControl
- ---@field appendToggle UIKmlLuaControl
- ---@field decomposeToggle UIKmlLuaControl
- ---@field transferToggle UIKmlLuaControl
- ---@field overlayToggle UIKmlLuaControl
- ---@field JewelryToggle UIKmlLuaControl
- ---@field RegenerateToggle UIKmlLuaControl
- ---@field InlayToggle UIKmlLuaControl
- local KLUIForgeGroupPanelView = {}
- setmetatable(KLUIForgeGroupPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/UIForgeGroup/Panel/KLUIForgeGroup/KLUIForgeGroupPanelKml'
- KLUIForgeGroupPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIForgeGroupPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIForgeGroupPanelView.content)
- end
- return KLUIForgeGroupPanelView
|