8
0

Anlage des Repos

This commit is contained in:
2024-01-24 16:42:38 +01:00
commit 38d6a271c4
1785 changed files with 3051496 additions and 0 deletions

12
test/Beispielfenster.ps1 Normal file
View File

@@ -0,0 +1,12 @@
[void][reflection.assembly]::LoadWithPartialName(System.Windows.Forms)
$form = new-object Windows.Forms.Form
$form.Text = Beispielfenster
$button = new-object Windows.Forms.Button
$button.Text = OK
$button.Left = 100
$button.Top = 100
$button.Width = 50
$button.Height = 25
$button.Add_Click({$form.close()})
$form.Controls.Add($button)
$form.ShowDialog()