fixed recover button

This commit is contained in:
duffyduck 2026-02-11 20:39:09 +01:00
parent 4764367473
commit ccb1f5e3bc
1 changed files with 3 additions and 2 deletions

View File

@ -901,7 +901,7 @@ function Show-MainForm {
$txtImportPath = New-Object System.Windows.Forms.TextBox $txtImportPath = New-Object System.Windows.Forms.TextBox
$txtImportPath.Location = New-Object System.Drawing.Point(0, 22) $txtImportPath.Location = New-Object System.Drawing.Point(0, 22)
$txtImportPath.Size = New-Object System.Drawing.Size(550, 25) $txtImportPath.Size = New-Object System.Drawing.Size(550, 25)
$txtImportPath.Anchor = "Top,Left,Right" $txtImportPath.Anchor = "Top,Left"
$txtImportPath.ReadOnly = $true $txtImportPath.ReadOnly = $true
$txtImportPath.BackColor = [System.Drawing.Color]::White $txtImportPath.BackColor = [System.Drawing.Color]::White
@ -909,10 +909,11 @@ function Show-MainForm {
$btnBrowse.Text = "Durchsuchen..." $btnBrowse.Text = "Durchsuchen..."
$btnBrowse.Location = New-Object System.Drawing.Point(558, 20) $btnBrowse.Location = New-Object System.Drawing.Point(558, 20)
$btnBrowse.Size = New-Object System.Drawing.Size(120, 28) $btnBrowse.Size = New-Object System.Drawing.Size(120, 28)
$btnBrowse.Anchor = "Top,Right" $btnBrowse.Anchor = "Top,Left"
$btnBrowse.FlatStyle = "Flat" $btnBrowse.FlatStyle = "Flat"
$pnlImportFile.Controls.AddRange(@($lblImportFile, $txtImportPath, $btnBrowse)) $pnlImportFile.Controls.AddRange(@($lblImportFile, $txtImportPath, $btnBrowse))
$btnBrowse.BringToFront()
# Druckerliste # Druckerliste
$lblImportList = New-Object System.Windows.Forms.Label $lblImportList = New-Object System.Windows.Forms.Label