mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-07 21:44:56 -06: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!"
|
|
}
|