Leadtools.Windows.Controls Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.03.25
ItemBackground Property
See Also 
Leadtools.Windows.Controls Namespace > ImageList Class : ItemBackground Property





Gets or sets the item background brush of the items in this ImageList.This is a dependency property.

Syntax

Visual Basic (Declaration) 
Public Property ItemBackground As Brush
Visual Basic (Usage)Copy Code
Dim instance As ImageList
Dim value As Brush
 
instance.ItemBackground = value
 
value = instance.ItemBackground
C# 
public Brush ItemBackground {get; set;}
Managed Extensions for C++ 
public: __property Brush get_ItemBackground();
public: __property void set_ItemBackground( 
   Brush value
);
C++/CLI 
public:
property Brush ItemBackground {
   Brush get();
   void set (Brush value);
}
XAML 
For XAML information, see the Brush type.

Dependency Property Information 

Identifier field

ItemSelectedBackgroundProperty

Metadata properties set to true

None

Return Value

The item background brush of the items in this ImageList

Example

For C#/VB examples, refer to ItemBorderBrush.

Remarks

How the ItemBackground value is used to draw the items depends on the current ViewStyle. The following table lists all the cases:
ViewStyleDescription
ImageListViewStyle.NormalFills the background of the selected items.
ImageListViewStyle.ExplorerWhen an item is selected, this color is used to fill the background behind the text of the item and to draw a rectangle around the image.
ImageListViewStyle.ButtonNot used.

For more information about item appearance, refer to ImageList Appearance.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family

See Also