mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-07-05 12:43:50 -05:00
12 lines
165 B
PowerShell
12 lines
165 B
PowerShell
function Invoke-WPFCloseButton {
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Close application
|
|
|
|
.PARAMETER Button
|
|
#>
|
|
$sync["Form"].Close()
|
|
Write-Host "Bye bye!"
|
|
} |