mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-07 05:24:54 -06:00
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
|
||
|
}
|