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
- hWndIntPtr
- Window handle. 
- taskBarProgressStateTaskBarProgressState
- State 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
- windowWindow
- Window to manipulate. 
- taskBarProgressStateTaskBarProgressState
- State 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
- hWndIntPtr
- Window handle. 
- taskBarProgressStateTaskBarProgressState
- Progress sate to set. 
- currentint
- Current 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
- hWndIntPtr
- Window handle. 
- taskBarProgressStateTaskBarProgressState
- Progress sate to set. 
- currentint
- Current value to display 
- totalint
- Total 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
- windowWindow
- Window to manipulate. 
- taskBarProgressStateTaskBarProgressState
- Progress sate to set. 
- currentint
- Current 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
- windowWindow
- Window to manipulate. 
- taskBarProgressStateTaskBarProgressState
- Progress sate to set. 
- currentint
- Current value to display 
- totalint
- Total number for division.