C# Класс Microsoft.WindowsAPICodePack.Taskbar.TabbedThumbnail

Represents a tabbed thumbnail on the taskbar for a given window or a control.
Наследование: IDisposable
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание
GetTabbedThumbnailClosingEventArgs TabbedThumbnailClosedEventArgs
GetTabbedThumbnailEventArgs TabbedThumbnailEventArgs
OnTabbedThumbnailActivated void
OnTabbedThumbnailBitmapRequested void
OnTabbedThumbnailClosed bool
OnTabbedThumbnailMaximized void
OnTabbedThumbnailMinimized void
SetImage void

Открытые методы

Метод Описание
Dispose ( ) : void

Release the native objects.

InvalidatePreview ( ) : void

Invalidate any existing thumbnail preview. Calling this method will force DWM to request a new bitmap next time user previews the thumbnails or requests Aero peek preview.

SetImage ( Bitmap bitmap ) : void

Override the thumbnail and peek bitmap. By providing this bitmap manually, Thumbnail Window manager will provide the Desktop Window Manager (DWM) this bitmap instead of rendering one automatically. Use this property to update the bitmap whenever the control is updated and the user needs to be shown a new thumbnail on the taskbar preview (or aero peek).

If the bitmap doesn't have the right dimensions, the DWM may scale it or not render certain areas as appropriate - it is the user's responsibility to render a bitmap with the proper dimensions.

SetWindowIcon ( Icon icon ) : void

Sets the window icon for this thumbnail preview

SetWindowIcon ( IntPtr iconHandle ) : void

Sets the window icon for this thumbnail preview

This method will not release the icon handle. It is the caller's responsibility to release the icon handle.

TabbedThumbnail ( IntPtr parentWindowHandle, Control control ) : System

Creates a new TabbedThumbnail with the given window handle of the parent and a child control (e.g. TabPage or Panel)

This method can also be called when using a WindowsFormHost control in a WPF application. Call this method with the main WPF Window's handle, and windowsFormHost.Child control.

TabbedThumbnail ( IntPtr parentWindowHandle, IntPtr windowHandle ) : System

Creates a new TabbedThumbnail with the given window handle of the parent and a child control/window's handle (e.g. TabPage or Panel)

Защищенные методы

Метод Описание
Dispose ( bool disposing ) : void

Release the native objects.

Приватные методы

Метод Описание
GetTabbedThumbnailClosingEventArgs ( ) : TabbedThumbnailClosedEventArgs
GetTabbedThumbnailEventArgs ( ) : TabbedThumbnailEventArgs
OnTabbedThumbnailActivated ( ) : void
OnTabbedThumbnailBitmapRequested ( ) : void
OnTabbedThumbnailClosed ( ) : bool

Returns true if the thumbnail was removed from the taskbar; false if it was not.

OnTabbedThumbnailMaximized ( ) : void
OnTabbedThumbnailMinimized ( ) : void
SetImage ( IntPtr hBitmap ) : void

/// Override the thumbnail and peek bitmap. /// By providing this bitmap manually, Thumbnail Window manager will provide the /// Desktop Window Manager (DWM) this bitmap instead of rendering one automatically. /// Use this property to update the bitmap whenever the control is updated and the user /// needs to be shown a new thumbnail on the taskbar preview (or aero peek). ///

Override the thumbnail and peek bitmap. By providing this bitmap manually, Thumbnail Window manager will provide the Desktop Window Manager (DWM) this bitmap instead of rendering one automatically. Use this property to update the bitmap whenever the control is updated and the user needs to be shown a new thumbnail on the taskbar preview (or aero peek).

/// If the bitmap doesn't have the right dimensions, the DWM may scale it or not /// render certain areas as appropriate - it is the user's responsibility /// to render a bitmap with the proper dimensions. ///If the bitmap doesn't have the right dimensions, the DWM may scale it or not render certain areas as appropriate - it is the user's responsibility to render a bitmap with the proper dimensions.

Описание методов

Dispose() публичный Метод

Release the native objects.
public Dispose ( ) : void
Результат void

Dispose() защищенный Метод

Release the native objects.
protected Dispose ( bool disposing ) : void
disposing bool
Результат void

InvalidatePreview() публичный Метод

Invalidate any existing thumbnail preview. Calling this method will force DWM to request a new bitmap next time user previews the thumbnails or requests Aero peek preview.
public InvalidatePreview ( ) : void
Результат void

SetImage() публичный Метод

Override the thumbnail and peek bitmap. By providing this bitmap manually, Thumbnail Window manager will provide the Desktop Window Manager (DWM) this bitmap instead of rendering one automatically. Use this property to update the bitmap whenever the control is updated and the user needs to be shown a new thumbnail on the taskbar preview (or aero peek).
If the bitmap doesn't have the right dimensions, the DWM may scale it or not render certain areas as appropriate - it is the user's responsibility to render a bitmap with the proper dimensions.
public SetImage ( Bitmap bitmap ) : void
bitmap System.Drawing.Bitmap The image to use.
Результат void

SetWindowIcon() публичный Метод

Sets the window icon for this thumbnail preview
public SetWindowIcon ( Icon icon ) : void
icon System.Drawing.Icon System.Drawing.Icon for the window/control associated with this preview
Результат void

SetWindowIcon() публичный Метод

Sets the window icon for this thumbnail preview
This method will not release the icon handle. It is the caller's responsibility to release the icon handle.
public SetWindowIcon ( IntPtr iconHandle ) : void
iconHandle System.IntPtr Icon handle (hIcon) for the window/control associated with this preview
Результат void

TabbedThumbnail() публичный Метод

Creates a new TabbedThumbnail with the given window handle of the parent and a child control (e.g. TabPage or Panel)
This method can also be called when using a WindowsFormHost control in a WPF application. Call this method with the main WPF Window's handle, and windowsFormHost.Child control.
public TabbedThumbnail ( IntPtr parentWindowHandle, Control control ) : System
parentWindowHandle System.IntPtr Window handle of the parent window. /// This window has to be a top-level window and the handle cannot be null or IntPtr.Zero
control System.Windows.Forms.Control Child control for which a tabbed thumbnail needs to be displayed
Результат System

TabbedThumbnail() публичный Метод

Creates a new TabbedThumbnail with the given window handle of the parent and a child control/window's handle (e.g. TabPage or Panel)
public TabbedThumbnail ( IntPtr parentWindowHandle, IntPtr windowHandle ) : System
parentWindowHandle System.IntPtr Window handle of the parent window. /// This window has to be a top-level window and the handle cannot be null or IntPtr.Zero
windowHandle System.IntPtr Window handle of the child control or window for which a tabbed /// thumbnail needs to be displayed
Результат System