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(IntPtr, TaskBarProgressState)
Allows to change the status of the progress bar in the task bar.
public static bool SetState(IntPtr hWnd, TaskBarProgressState taskBarProgressState)
Parameters
hWndIntPtrWindow 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(IntPtr, TaskBarProgressState, int)
Allows to change the fill of the task bar.
public static bool SetValue(IntPtr hWnd, TaskBarProgressState taskBarProgressState, int current)
Parameters
hWndIntPtrWindow handle.
taskBarProgressStateTaskBarProgressStateProgress sate to set.
currentintCurrent value to display
Returns
SetValue(IntPtr, TaskBarProgressState, int, int)
Allows to change the fill of the task bar.
public static bool SetValue(IntPtr hWnd, TaskBarProgressState taskBarProgressState, int current, int total)
Parameters
hWndIntPtrWindow 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.