mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-03-12 17:51:46 +08:00
* Autorun changes * Missed a handle * Remove todo --------- Co-authored-by: Chris Titus <dfm.titus@gmail.com>
13 lines
449 B
PowerShell
13 lines
449 B
PowerShell
function Hide-WPFInstallAppBusy {
|
|
<#
|
|
.SYNOPSIS
|
|
Hides the busy overlay in the install app area of the WPF form.
|
|
This is used to indicate that an install or uninstall has finished.
|
|
#>
|
|
Invoke-WPFUIThread -ScriptBlock {
|
|
$sync.InstallAppAreaOverlay.Visibility = [Windows.Visibility]::Collapsed
|
|
$sync.InstallAppAreaBorder.IsEnabled = $true
|
|
$sync.InstallAppAreaScrollViewer.Effect.Radius = 0
|
|
}
|
|
}
|