Files
Intune/dump/SCCM-Tool/Forms/Form-Examples/Combobox.ps1

19 lines
1.3 KiB
PowerShell
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
$MyForm = New-Object System.Windows.Forms.Form
$MyForm.Text="MyForm"
$MyForm.Size = New-Object System.Drawing.Size(300,300)
$mComboBoX1 = New-Object System.Windows.Forms.ComboBoX
$mComboBoX1.Text="ComboBoX1"
$mComboBoX1.Top="51"
$mComboBoX1.Left="35"
$mComboBoX1.Anchor="Left,Top"
$mComboBoX1.items.Add('A')
$mComboBoX1.Size = New-Object System.Drawing.Size(100,23)
$MyForm.Controls.Add($mComboBoX1)
$MyForm.ShowDialog()