.NET MAUI CollectionView Styling
To style the CollectionView, use the following properties:
-
BackgroundColor
(Color
)—Specifies the background color of the control.
Styling and Configuring the Item
The CollectionView control provides a styling mechanism for customizing the look of its items. To use it, set the ItemViewStyle
(Style
with a target type RadCollectionViewItemView
) property of the control.
The available properties are described in the table below:
Property | Description |
---|---|
BackgroundColor (Color ) |
Defines the background color of the item. |
Padding (Thickness ) |
Defines the padding of the item. |
IsSelected (bool ) |
Defines whether the item is selected. Default value is false . |
GroupLevelIndentation (double ) |
Defines the indentation that accumulates for each group level. |
BorderBrush (Brush ) |
Defines the brush of the border around the item. |
BorderColor (Color ) |
Defines the color of the border around the item. |
BorderThickness (Thickness ) |
Defines the thickness of the border around the item. |
CornerRadius (Thickness ) |
Defines the corner radius of the border around the item. |
The following example shows how to use the ItemViewStyle
:
1. Define the following business object:
2. Create a ViewModel
class as shown below:
3. Add the RadCollectionView
definition with the ItemViewStyle
set:
4. Include the telerik
namespace:
5. Add the following styles to the page's resource:
This is the result on WinUI:
For a runnable example demonstrating the CollectionView Item View Styling, see the SDKBrowser Demo Application and go to CollectionView > Styling category.