WPF DataGrid 改变当前选中行颜色 是那种改变后不会再变回来的!用C# 代码实现

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF DataGrid 改变当前选中行颜色 是那种改变后不会再变回来的!用C# 代码实现相关的知识,希望对你有一定的参考价值。

参考技术A 把样式写在app.xaml; <Application.Resources>节点下边,然后用在cs文件里面
用控件名.Style=(Style)FindResource("样式的Key");
参考技术B 能说的详细点吗?不是很明白你的意图追问

就是 比如 我在DataGrid上点击一行后 这行颜色就会改变成我希望的颜色
在我点击其他行时这行的颜色保持更改过的不改变

追答

1、最简单的方法,重写动态资源
SystemColors.HighlightBrushKey // 选中项的背景
SystemColors.HighlightTextBrushKey // 字体
SystemColors.HighlightBrushKey // 边框
DataGrid.FocusBorderBrushKey // CurrentCell 的边框

2、当然也可以定义 DataGridRow 和 DataGridCell 的样式或模板
由于 DataGridRow 和 DataGridCell 的层不同,所以直接定义 DataGridCell 的样式或模板就可以了。
ps. 样式代码过长,贴不上去了

追问

我要把这些代码写到哪啊 ?我不想用XAML 代码!我想在程序中动态改变!
谢谢 !

本回答被提问者采纳

WPF 后台实现按数字键滚动DataGrid 当前选中项

  最近遇到个项目,设备上没有鼠标,界面为全屏的一个DataGrid,需要实现按小键盘的0和1让DataGrid的当前选中行进行上下滚动

  起到重要参考的是:   https://blog.csdn.net/sinat_31608641/article/details/105428496    实现后台滚动到当前选中项。
      现在把主要实现方式做个笔记:

  首先,前台一定要设置VirtualizingStackPanel.IsVirtualizing="False"

  接下来,是两个公共方法:

  

        /// <summary>
        /// 将SelectedItem滚动为第一行
        /// </summary>
        /// <param name="dataGrid">目标DagaGrid</param>
        /// <param name="selectedItem">选中项</param>
        public static void SetSelectedItemFirstRow(object dataGrid, object selectedItem)
        {
            //若目标datagrid为空,抛出异常
            if (dataGrid == null)
            {
                throw new ArgumentNullException("目标无" + dataGrid + "无法转换为DataGrid");
            }
            //获取目标DataGrid,为空则抛出异常
            System.Windows.Controls.DataGrid dg = dataGrid as System.Windows.Controls.DataGrid;
            if (dg == null)
            {
                throw new ArgumentNullException("目标无" + dataGrid + "无法转换为DataGrid");
            }
            //数据源为空则返回
            if (dg.Items == null || dg.Items.Count < 1)
            {
                return;
            }

            //获取焦点,滚动为目标行
            dg.Focus();
            dg.SelectedItem = selectedItem;
            dg.CurrentColumn = dg.Columns[0];
            dg.ScrollIntoView(dg.SelectedItem, dg.CurrentColumn);
        }

        /// <summary>
        /// 获取选中的行
        /// </summary>
        /// <param name="datagrid"></param>
        /// <param name="rowIndex"></param>
        /// <returns></returns>
        public static DataGridRow GetDataGridRow(DataGrid datagrid, int rowIndex)
        {
            DataGridRow row = (DataGridRow)datagrid.ItemContainerGenerator.ContainerFromIndex(rowIndex);
            if (row == null)
            {
                datagrid.UpdateLayout();

                row = (DataGridRow)datagrid.ItemContainerGenerator.ContainerFromIndex(rowIndex);
                row.IsSelected = true;
            }
            return row;
        } 

  然后,添加一个窗体的KeyDown事件:

  

     private void UserControl_KeyDown(object sender, KeyEventArgs e)
        {
            dgvDeal.Focus();
            if (e.Key==Key.NumPad0)
            {
                if (dgvDeal.SelectedIndex == dgvDeal.Items.Count-1)
                {
                    dgvDeal.SelectedIndex = 0; 
                }
                else
                {
                    dgvDeal.SelectedIndex = dgvDeal.SelectedIndex + 1; 
                }
            }
            else if (e.Key == Key.NumPad1)
            {
                if (dgvDeal.SelectedIndex == 0)
                {
                    dgvDeal.SelectedIndex = dgvDeal.Items.Count-1; 
                }
                else
                {
                    dgvDeal.SelectedIndex = dgvDeal.SelectedIndex - 1; 
                }
            }
              
            DataGridRow resRow = GetDataGridRow(dgvDeal, dgvDeal.SelectedIndex);
            resRow.IsSelected = true;
            SetSelectedItemFirstRow(dgvDeal, dgvDeal.SelectedItem);
             
        }

 

          OK!

 

以上是关于WPF DataGrid 改变当前选中行颜色 是那种改变后不会再变回来的!用C# 代码实现的主要内容,如果未能解决你的问题,请参考以下文章

WPF,通过修改dataGrid的cell的style,改变选中行失去焦点时的颜色 4.0可用

wpf datagrid 样式怎么设置默认选中行的颜色

WPF DataGrid 获取选中的当前行某列值

C# wpf datagrid 动态加载数据后改变单元格颜色bug

WPF 后台实现按数字键滚动DataGrid 当前选中项

WPF 后台实现按数字键滚动DataGrid 当前选中项