1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
using assembly System.Windows.Forms using namespace System.Windows.Forms $form = [Form] @{ Text = 'Mi formulario' } $Label=New-Object System.Windows.Forms.Label $Label.Text="Etiqueta de ejemplo" $Label.AutoSize=$True $Label.Location=New-Object System.Drawing.Size(185,180) for($i=0;$i -lt 6;$i++) { $boton = [Button] @{ Text = (" botón "+$i); Location = New-Object System.Drawing.Point ((50*$i),100)} $boton.add_Click{ Write-Host ("hola soy "+$this.Text) } $form.Controls.Add($boton) $boton = $null } $form.Controls.Add($Label) $form.ShowDialog() |
