mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-06-28 00:54:47 -05:00

* Implement app installation progress overlay and refactor progress bar handling * Add overlay background color settings and ensure minimum progress bar value * Add busy overlay functionality and progress bar updates for installation process * Refactor busy overlay implementation to dynamically adjust size based on app area dimensions
25 lines
878 B
PowerShell
25 lines
878 B
PowerShell
function Set-WinUtilProgressbar{
|
|
<#
|
|
.SYNOPSIS
|
|
This function is used to Update the Progress Bar displayed in the winutil GUI.
|
|
It will be automatically hidden if the user clicks something and no process is running
|
|
.PARAMETER Label
|
|
The Text to be overlayed onto the Progress Bar
|
|
.PARAMETER PERCENT
|
|
The percentage of the Progress Bar that should be filled (0-100)
|
|
#>
|
|
param(
|
|
[string]$Label,
|
|
[ValidateRange(0,100)]
|
|
[int]$Percent
|
|
)
|
|
|
|
$sync.form.Dispatcher.Invoke([action]{$sync.progressBarTextBlock.Text = $label})
|
|
$sync.form.Dispatcher.Invoke([action]{$sync.progressBarTextBlock.ToolTip = $label})
|
|
if ($percent -lt 5 ) {
|
|
$percent = 5 # Ensure the progress bar is not empty, as it looks weird
|
|
}
|
|
$sync.form.Dispatcher.Invoke([action]{ $sync.ProgressBar.Value = $percent})
|
|
|
|
}
|