WPF DataGrid Select the change in background color when the row loses focus

Source: Internet
Author: User
Tags wpf datagrid

Changes to the background color of the WPF DataGrid selection when the row loses focus. In a very simple way, you can change the value of the Inactiveselectionhighlightbrushkey property in the resource of the DataGrid.

The key code is as follows:

            <DataGrid.Resources>                <solidcolorbrush x:key="{x:static Systemcolors.inactiveselectionhighlightbrushkey}" color="Yellow"/>            </DataGrid.Resources>

The complete simple code is as follows:

<datagrid name="Grid1"Horizontalalignment=" Left"height=" -"margin="75,86,0,0"Verticalalignment="Top"Width="282"> <DataGrid.Columns> <datagridtextcolumn header="numbering"binding="{Binding Compan.id}"></DataGridTextColumn> <datagridtextcolumn header="company"binding="{Binding CompanyName}"></DataGridTextColumn> <datagridtextcolumn header="Fixed Assets"binding="{Binding Fixedassets}"Width ="*"></DataGridTextColumn> </DataGrid.Columns> <DataGrid.Resources> <solidcolorbrush x:key="{x:static Systemcolors.inactiveselectionhighlightbrushkey}"Color="Yellow"/> </DataGrid.Resources> </DataGrid>

WPF DataGrid Select the change in background color when the row loses focus

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.