Updated docs and added missing constants to ComCtl32

pull/285/head
dahall 2022-03-11 09:17:47 -07:00
parent 46c3324ade
commit a0b39b5416
3 changed files with 961 additions and 311 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -12,10 +12,17 @@ namespace Vanara.PInvoke
/// <summary>No color.</summary>
public const uint CLR_NONE = 0xFFFFFFFF;
/// <summary/>
/// <summary>
/// By specifying the I_IMAGECALLBACK value instead of the index of an image, you can delay specifying the selected or nonselected
/// image until the item is about to be redrawn. I_IMAGECALLBACK directs the control to query the application for the index by
/// sending a control specific notification message.
/// </summary>
public const int I_IMAGECALLBACK = -1;
/// <summary/>
/// <summary>
/// Set LPARAM to I_IMAGENONE to indicate that the button does not have an image. The button layout will not include any
/// space for a bitmap, only text.
/// </summary>
public const int I_IMAGENONE = -2;
/// <summary/>