Hey pros,
I am working on some UI using PowerShell form. I am wondering, Is there a way to make the corners of the form little rounded?
I usually start my form like this :
Add-Type -AssemblyName System.Windows.Forms
$Form = New-Object system.Windows.Forms.Form
$Form.ClientSize = '550,240'
$Form.FormBorderStyle = 'Fixed3d'
$Form.text = "Pre-Requisite Check "
$Form.BackColor = 'White'
$Form.TopMost = $true
$Form.ShowDialog()
Thanks.