Class TaskBarProgress
Allows to change the status of the displayed notification in the application icon on the TaskBar.
public static class TaskBarProgress
- Inheritance
-
TaskBarProgress
- Inherited Members
Methods
SetState(nint, TaskBarProgressState)
Allows to change the status of the progress bar in the task bar.
public static bool SetState(nint hWnd, TaskBarProgressState taskBarProgressState)
Parameters
hWndnintWindow handle.
taskBarProgressStateTaskBarProgressStateState of the progress indicator.
Returns
SetState(Window?, TaskBarProgressState)
Allows to change the status of the progress bar in the task bar.
public static bool SetState(Window? window, TaskBarProgressState taskBarProgressState)
Parameters
windowWindowWindow to manipulate.
taskBarProgressStateTaskBarProgressStateState of the progress indicator.
Returns
SetValue(nint, TaskBarProgressState, int)
Allows to change the fill of the task bar.
public static bool SetValue(nint hWnd, TaskBarProgressState taskBarProgressState, int current)
Parameters
hWndnintWindow handle.
taskBarProgressStateTaskBarProgressStateProgress sate to set.
currentintCurrent value to display
Returns
SetValue(nint, TaskBarProgressState, int, int)
Allows to change the fill of the task bar.
public static bool SetValue(nint hWnd, TaskBarProgressState taskBarProgressState, int current, int total)
Parameters
hWndnintWindow handle.
taskBarProgressStateTaskBarProgressStateProgress sate to set.
currentintCurrent value to display
totalintTotal number for division.
Returns
SetValue(Window, TaskBarProgressState, int)
Allows to change the fill of the task bar.
public static bool SetValue(Window window, TaskBarProgressState taskBarProgressState, int current)
Parameters
windowWindowWindow to manipulate.
taskBarProgressStateTaskBarProgressStateProgress sate to set.
currentintCurrent value to display
Returns
SetValue(Window?, TaskBarProgressState, int, int)
Allows to change the fill of the task bar.
public static bool SetValue(Window? window, TaskBarProgressState taskBarProgressState, int current, int total)
Parameters
windowWindowWindow to manipulate.
taskBarProgressStateTaskBarProgressStateProgress sate to set.
currentintCurrent value to display
totalintTotal number for division.