mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-05 20:44:55 -06:00
9b87edc10b
Added an minimize and maximize button to the main window
7 lines
177 B
PowerShell
7 lines
177 B
PowerShell
function Invoke-WPFMinimizeButton {
|
|
<#
|
|
.SYNOPSIS
|
|
Minimize the application window
|
|
#>
|
|
$sync["Form"].WindowState = [System.Windows.WindowState]::Minimized
|
|
} |