New to Telerik UI for .NET MAUI? Start a free 30-day trial

.NET MAUI GridSplitter Styling

The GridSplitter control offers a range of styling options, allowing you to customize its appearance and adjust its visual states for different user interactions.

The GridSplitter allows you to customize its look using the following properties:

  • BackgroundColor (Color)—Specifies the background color of the control.
  • Background (Brush)—Specifies the background brush of the control.
  • BorderColor (Color)—Specifies the border color of the control.
  • BorderBrush (Brush)—Specifies the border brush of the control.
  • BorderThickness (Thickness)—Specifies the border thickness of the control.
  • CornerRadius (Thickness)—Specifies the border corner radius of the control.
  • ContentPadding (Thickness)—Specifies the padding of the content in the control.

In addition, you can style the gripper by using the GripperColor (Color) property.

Visual States

You can use visual states to change the appearance of the control based on its state, for example, when it's disabled and hovered.

The GridSplitter provides the following CommonStates visual states:

  • Normal—Applies when the GridSplitter is in normal state.
  • MouseOver—Applies when the mouse pointer is over the GridSplitter.
  • Disabled—Applies when the GridSplitter visual state is set to disabled.

This is the result of applying the visual states:

.NET MAUI GrdiSplitter Styling

Example

Here is an example of how to style the GridSplitter control and use the visual states.

1 Define the GridSplitter in XAML.

<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition />
        <ColumnDefinition Width="Auto" />
        <ColumnDefinition />
        <ColumnDefinition Width="Auto" />
        <ColumnDefinition />
    </Grid.ColumnDefinitions>
    <Grid.Resources>
        <Style TargetType="telerik:RadGridSplitter">
            <Setter Property="BackgroundColor" Value="#D6EEEC"/>
            <Setter Property="BorderColor" Value="#00897B"/>
            <Setter Property="BorderThickness" Value="1, 0" />
            <Setter Property="GripperColor" Value="#00897B" />
            <Setter Property="VisualStateManager.VisualStateGroups">
                <VisualStateGroupList>
                    <VisualStateGroup Name="CommonStates">
                        <VisualState Name="Normal" />
                        <!-- Applicable for Desktop only -->
                        <VisualState Name="MouseOver">
                            <VisualState.Setters>
                                <Setter Property="telerik:RadGridSplitter.BackgroundColor" Value="#C4E6E3" />
                            </VisualState.Setters>
                        </VisualState>
                        <VisualState Name="Disabled">
                            <VisualState.Setters>
                                <Setter Property="telerik:RadGridSplitter.GripperColor" Value="#6100897B" />
                            </VisualState.Setters>
                        </VisualState>
                    </VisualStateGroup>
                </VisualStateGroupList>
            </Setter>
        </Style>
    </Grid.Resources>
    <telerik:RadBorder Background="#60CCD15C" />
    <telerik:RadGridSplitter Grid.Column="1"
                             ResizeDirection="Columns" />
    <telerik:RadBorder Background="#6081BCD1" 
                       Grid.Column="2" />
    <telerik:RadGridSplitter Grid.Column="3"
                             ResizeDirection="Columns" />
    <Border Background="#6000897B"
            Grid.Column="4" />
</Grid>

2. Add the telerik namespace:

 xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"

This is the result:

.NET MAUI GrdiSplitter Styling

For a runnable example with the GridSplitter Styling and visual states scenario, see the SDKBrowser Demo Application and go to GridSplitter > Features category.

See Also

In this article