mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-07 05:24:54 -06:00
11 lines
372 B
PowerShell
11 lines
372 B
PowerShell
|
function Invoke-WPFMaximizeButton {
|
||
|
<#
|
||
|
.SYNOPSIS
|
||
|
Alternates between Maximized and Minimized window
|
||
|
#>
|
||
|
if ($sync["Form"].WindowState -eq [System.Windows.WindowState]::Maximized) {
|
||
|
$sync["Form"].WindowState = [System.Windows.WindowState]::Normal
|
||
|
} else {
|
||
|
$sync["Form"].WindowState = [System.Windows.WindowState]::Maximized
|
||
|
}
|
||
|
}
|