Table of Contents

Class TabbedThumbnailEventArgs

Namespace
Microsoft.WindowsAPICodePack.Taskbar
Assembly
Microsoft.WindowsAPICodePack.Shell.dll

Event args for various Tabbed Thumbnail related events

public class TabbedThumbnailEventArgs : EventArgs
Inheritance
TabbedThumbnailEventArgs
Derived
Inherited Members

Constructors

TabbedThumbnailEventArgs(nint)

Creates a Event Args for a specific tabbed thumbnail event.

public TabbedThumbnailEventArgs(nint windowHandle)

Parameters

windowHandle nint

Window handle for the control/window related to the event

TabbedThumbnailEventArgs(UIElement)

Creates a Event Args for a specific tabbed thumbnail event.

public TabbedThumbnailEventArgs(UIElement windowsControl)

Parameters

windowsControl UIElement

WPF Control (UIElement) related to the event

Properties

WindowHandle

Gets the Window handle for the specific control/window that is related to this event.

public nint WindowHandle { get; }

Property Value

nint

Remarks

For WPF Controls (UIElement) the WindowHandle will be IntPtr.Zero. Check the WindowsControl property to get the specific control associated with this event.

WindowsControl

Gets the WPF Control (UIElement) that is related to this event. This property may be null for non-WPF applications.

public UIElement WindowsControl { get; }

Property Value

UIElement