ksvimal
ksvimal

Reputation: 297

How to set the border for a WPF DataGrid Row which is currently having the focus

I want to set the border for a DataGrid Row which is currently having the focus. But not the seleced row because when the Multi selection is enabled for the datagrid then there is a chance that multiple rows can be selected.

I need a solution in XAML

Thanks in advance!

Upvotes: 4

Views: 14136

Answers (2)

RaviStrs
RaviStrs

Reputation: 614

Try IsKeyboardFocusWithin Property

    <Style.Triggers>
        <Trigger Property="IsKeyboardFocusWithin"
                 Value="True">
            <Setter Property="BorderBrush"
                    Value="Red" />
        </Trigger>
    </Style.Triggers>

Upvotes: 1

svick
svick

Reputation: 244777

Add this to DataGridRow's style (either using Resources, or by setting DataGrid.RowStyle):

<Style TargetType="DataGridRow">
    <Style.Triggers>
        <Trigger Property="IsFocused" Value="true">
            <Setter Property="BorderBrush" Value="Red" />
            <Setter Property="BorderThickness" Value="1" />
        </Trigger>
    </Style.Triggers>
</Style>

Upvotes: 6

Related Questions