New to Telerik UI for WPFStart a free 30-day trial

Styling the GridViewNewRow

Updated on Oct 1, 2025

In this article we will show how you can explicitly or implicitly style the GridViewNewRow.

Targeting the GridViewNewRow Element

In order to style the GridViewNewRow, you should create an appropriate style targeting the GridViewNewRow element.

You have two options:

  • To create an empty style and set it up on your own.

  • To copy the default style of the control and modify it.

To learn how to modify the default GridViewNewRow style, please refer to the Modifying Default Styles article.

Example 1: Styling the GridViewNewRow implicitly

XAML
	<Style TargetType="telerik:GridViewNewRow">
        <Setter Property="Background" Value="Red" />
    </Style>

Example 2: Styling the GridViewNewRow explicitly

XAML
    <Style x:Key="NewRowStyle" TargetType="telerik:GridViewNewRow">
        <Setter Property="Background" Value="Red" />
    </Style>

    <telerik:RadGridView NewRowPosition="Top"
                         NewRowStyle="{StaticResource NewRowStyle}">

If you're using Implicit Styles, you should base your style on the GridViewNewRowStyle.

Figure 1: RadGridView with styled GridViewNewRow in the Office 2016 theme

Telerik WPF DataGrid-new-row-styling

See Also