C# Class BrightnessTray.NativeMethods.NOTIFYICONIDENTIFIER

Contains information used by Shell_NotifyIconGetRect to identify the icon for which to retrieve the bounding rectangle.
The icon can be identified to Shell_NotifyIconGetRect through this structure in two ways: guidItem alone (recommended) hWnd plus uID If guidItem is used, hWnd and uID are ignored.
Mostrar archivo Open project: navhaxs/BrightnessTray Class Usage Examples

Public Properties

Property Type Description
cbSize uint
guidItem System.Guid
hWnd System.IntPtr
uID uint

Property Details

cbSize public_oe property

Size of this structure, in bytes.
public uint cbSize
return uint

guidItem public_oe property

A registered GUID that identifies the icon.
public Guid,System guidItem
return System.Guid

hWnd public_oe property

A handle to the parent window used by the notification's callback function. For more information, see the hWnd member of the NOTIFYICONDATA structure.
public IntPtr,System hWnd
return System.IntPtr

uID public_oe property

The application-defined identifier of the notification icon. Multiple icons can be associated with a single hWnd, each with their own uID.
public uint uID
return uint