mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-04-11 17:37:18 +10:00
13 lines
166 B
PowerShell
13 lines
166 B
PowerShell
function Invoke-WPFCloseButton {
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Close application
|
|
|
|
.PARAMETER Button
|
|
#>
|
|
$sync["Form"].Close()
|
|
Write-Host "Bye bye!"
|
|
}
|