WPF Datagrid -DataGridTemplateColumn选项卡焦点问题 [英] WPF Datagrid -DataGridTemplateColumn tab focus issue

查看:715
本文介绍了WPF Datagrid -DataGridTemplateColumn选项卡焦点问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Microsoft WPF数据网格。我已经注意到一个奇怪的行为与WPF datagrid DataGridTemplateColumn。当您在网格中使用templateColumn时,模板列包含某些控件,当您从上一列中选取标签时,焦点不会自动提供给模板列中声明的第一个元素。 foucs初始设置在模板列的边框上,当我们的标签一旦被设置为焦点时,焦点将转到第一列。此问题的任何解决方法。我如何将焦点放在datagrid的模板列中的第一个元素当我关闭。

解决方案

通过处理网格的PrepareCellForEdit事件来摆脱这个问题。这是代码

  void HODataGrid_PreparingCellForEdit(object sender,DataGridPreparingCellForEditEventArgs e)
{
UIElement inputElement;
///
/// Texbox是我的模板列中的第一个控件
///
inputElement = HODataGridHelper.GetVisualChild< TextBox>(e.EditingElement);
if(inputElement!= null)
{
Keyboard.Focus(inputElement);
}
}


I am using Microsoft WPF datagrid. I have noticed a strange behavior with WPF datagrid DataGridTemplateColumn. When you use the templateColumn in the grid and the template column contains some controls when you tab from the previous column the focus is not automatically given to the first element declared in the template column. The foucs is initally set on the border of the template column and when we tab of once agin the focus goes to the first column. Any workaround for this issue. How can i set the focus to go the first element in the template column of the datagrid when i tab off.

解决方案

I got rid of this problem by handling PrepareCellForEdit event of the grid. Here is the code

void HODataGrid_PreparingCellForEdit(object sender, DataGridPreparingCellForEditEventArgs e)
{
      UIElement inputElement;
      ///
      /// Texbox is the first control in my template column
      ///
      inputElement = HODataGridHelper.GetVisualChild<TextBox>(e.EditingElement);
      if (inputElement != null)
      {
           Keyboard.Focus(inputElement);
      }
}

这篇关于WPF Datagrid -DataGridTemplateColumn选项卡焦点问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆