Gets or sets the item background color of the un-selected items in this RasterImageList
public Color ItemBackColor { get; set; }
public:
property Color^ ItemBackColor
{
Color^ get()
void set(Color^ value)
}
The item background color of the un-selected items in this RasterImageList
How the ItemBackColor value is used to draw the items depends on the current ViewStyle. The following table lists all the cases:
ViewStyle | Description |
---|---|
RasterImageListViewStyle.Normal | Fills the background of un-selected items. |
RasterImageListViewStyle.Explorer | Not used. |
RasterImageListViewStyle.Button | Not used. |
For more information about item appearance, refer to RasterImageList Appearance.
using Leadtools.WinForms;
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Drawing;
public void RasterImageList_ItemBorderStyle(RasterImageList imageList)
{
// Apply our custom item styles
imageList.BeginUpdate();
// Make sure we are using Normal style
imageList.ViewStyle = RasterImageListViewStyle.Normal;
// Draw a border around the item
imageList.ItemBorderStyle = BorderStyle.FixedSingle;
// Draw a border around the image inside each item
imageList.ItemImageBorderStyle = BorderStyle.FixedSingle;
// Leave 10 pixels between each adjucent items
imageList.ItemSpacingSize = new Size(10, 10);
// Apply a dark cyan/white color scheme
imageList.ItemForeColor = Color.DarkCyan;
imageList.ItemSelectedForeColor = Color.White;
imageList.ItemBackColor = Color.White;
imageList.ItemSelectedBackColor = Color.DarkCyan;
imageList.EndUpdate();
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document