Method | Description | |
---|---|---|
AddEmbeddedResource ( string resourceName, |
Adds a 32bit alphablended icon or image to an existing imagelist from an embedded image or icon.
|
|
AddFromFile ( string fileName, |
Adds an alphablended icon or image to an existing imagelist from an external image or icon file.
|
|
AddFromImage ( |
Adds an alphablended icon to an existing imagelist from an Icon object.
|
|
AddFromImage ( Image sourceImage, |
Adds an alphablended image to an existing imagelist from an Image object.
|
|
AddFromImage ( string key, |
Adds from image.
|
|
AddIconOfFile ( string fileName, IconSize iconSize, bool selectedState, bool openState, bool linkOverlay, |
Extracts the icon of an existing file or folder on the system and adds the icon to an imagelist.
|
|
AddIconOfFile ( string fileName, |
Extracts the icon of an existing file or folder on the system using default parameters and adds the icon to an imagelist.
|
|
AddIconOfFileExt ( string fileExtension, IconSize iconSize, bool selectedState, bool openState, bool linkOverlay, |
Extracts a file extension icon from the system and adds the icon to an imagelist.
|
|
AddIconOfFileExt ( string fileExtension, |
Extracts a file extension icon from the system using default parameters and adds the icon to an imagelist.
|
Method | Description | |
---|---|---|
Add ( |
This method is used to add alphablended images to an imagelist using win32 api functions to overcome the broken .Add() method of the imagelist control which loses the alphablend info of images.
|
|
Add ( string pszPath, |
This method is used to add alphablended system icons to an imagelist using win32 api. This an added feature which is not included in the framework.
|
|
Add ( string key, string pszPath, |
Adds the specified key.
|
|
AlphaImageList ( ) : System |
Initializes a new instance of the AlphaImageList class.
|
|
CreateDIBSection ( |
||
DestroyIcon ( |
||
ImageList_Add ( |
||
RtlMoveMemory ( |
||
SHGetFileInfo ( string pszPath, uint dwFileAttributes, SHFILEINFO &psfi, uint cbSizeFileInfo, uint uFlags ) : |
public static AddEmbeddedResource ( string resourceName, |
||
resourceName | string | |
destinationImagelist | ||
return | void |
public static AddFromFile ( string fileName, |
||
fileName | string | |
destinationImagelist | ||
return | void |
public static AddFromImage ( |
||
sourceIcon | The Icon object to add to the imagelist | |
destinationImagelist | An existing imagelist to add the icon to. | |
return | void |
public static AddFromImage ( Image sourceImage, |
||
sourceImage | Image | The Image object to add to the imagelist. |
destinationImagelist | An existing imagelist to add the image to. | |
return | void |
public static AddFromImage ( string key, |
||
key | string | The key. |
sourceIcon | The source icon. | |
destinationImagelist | The destination imagelist. | |
return | void |
public static AddIconOfFile ( string fileName, IconSize iconSize, bool selectedState, bool openState, bool linkOverlay, |
||
fileName | string | A file or folder path to extract the icon from. |
iconSize | IconSize | The size to extract. |
selectedState | bool | A flag to add the selected state of the icon. |
openState | bool | A flag to add the open state of the icon. |
linkOverlay | bool | A flag to add a shortcut overlay to the icon. |
destinationImagelist | An existing imagelist to add the extracted icon to. | |
return | void |
public static AddIconOfFile ( string fileName, |
||
fileName | string | A file or folder path to extract the icon from. |
destinationImagelist | An existing imagelist to add the extracted icon to. | |
return | void |
public static AddIconOfFileExt ( string fileExtension, IconSize iconSize, bool selectedState, bool openState, bool linkOverlay, |
||
fileExtension | string | A file extension to extract the icon from. |
iconSize | IconSize | The size to extract. |
selectedState | bool | A flag to add the selected state of the icon. |
openState | bool | A flag to add the open state of the icon. |
linkOverlay | bool | A flag to add a shortcut overlay to the icon. |
destinationImagelist | An existing imagelist to add the extracted icon to. | |
return | void |
public static AddIconOfFileExt ( string fileExtension, |
||
fileExtension | string | A file extension to extract the icon from. |
destinationImagelist | An existing imagelist to add the extracted icon to. | |
return | void |