mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-07-02 19:13:30 -05: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
|
|
} |