C# Class OdessaGUIProject.Windows7Taskbar

The primary coordinator of the Windows 7 taskbar-related activities.
Mostra file Open project: noahsw/highlight-hunter

Private Properties

Property Type Description
SendMessage int

Public Methods

Method Description
SetProgressState ( IntPtr hwnd, ThumbnailProgressState state ) : void

Sets the progress state of the specified window's taskbar button.

SetProgressValue ( IntPtr hwnd, ulong current, ulong maximum ) : void

Sets the progress value of the specified window's taskbar button.

Private Methods

Method Description
SendMessage ( IntPtr hWnd, int wMsg, int wParam, int lParam ) : int

Method Details

SetProgressState() public static method

Sets the progress state of the specified window's taskbar button.
public static SetProgressState ( IntPtr hwnd, ThumbnailProgressState state ) : void
hwnd System.IntPtr The window handle.
state ThumbnailProgressState The progress state.
return void

SetProgressValue() public static method

Sets the progress value of the specified window's taskbar button.
public static SetProgressValue ( IntPtr hwnd, ulong current, ulong maximum ) : void
hwnd System.IntPtr The window handle.
current ulong The current value.
maximum ulong The maximum value.
return void