Files
Cleaner/GUIS/delconf/delconf.ps1
Florian Späth 6ba4884590 init
2025-01-31 01:47:45 +01:00

18 lines
586 B
PowerShell

function Load_delconf {
param ($root)
# Lädt das Fenster
[xml]$Form = Get-Content "$PSScriptRoot\delconf.xaml" -Encoding utf8
$NR=(New-Object System.Xml.XmlNodeReader $Form)
$window=[Windows.Markup.XamlReader]::Load($NR)
# Verknüpft feste Elemente
$window.Title = $Script:Version
$window.icon="$root/Source/Logo.png"
$Script:delconfsize = $window.FindName("tbdelsize")
$Script:delconfelements = $window.FindName("tbdeldata")
$Script:deltb = $window.FindName("tb_del")
$Script:movetb = $window.FindName("tb_move")
return $window
}