gpt4 book ai didi

c# - 使用 DataGridTemplateColumn 在按键时开始编辑模式

转载 作者:太空狗 更新时间:2023-10-29 21:44:22 24 4
gpt4 key购买 nike

我有一个 DataGrid 绑定(bind)到一个名为 MyObjects 的 ObservableCollection。DataGrid 有 2 列:一列是 DataGridTextColumn,另一列是 DataGridTemplateColumn。

我想要实现的是,在选择单元格的同时按下某个键时,模板列的行为类似于文本列。

例如,当您从文本列中选择一个单元格并按下“A”键时,单元格编辑模板将激活,字母“A”将输入到文本框中。

我想知道的是如何将此行为实现到模板列中(即按键激活其单元格编辑模板并将字符作为输入传递给模板内的控件)。

我的搜索结果只能找到与编辑模板中的哪个控件在单元格之间切换时获得焦点有关的答案,这与我的问题不同。下面是我的 DataGrid 的 XAML。

<DataGrid ItemsSource="{Binding MyObjects}" AutoGenerateColumns="False">
<DataGrid.Columns>
<DataGridTextColumn Header="Test" Binding="{Binding Test}"/>
<DataGridTemplateColumn Header="Date">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding Date}"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
<DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate>
<!--This is the control that I want to focus!-->
<DatePicker SelectedDate="{Binding Date}"/>
</DataTemplate>
</DataGridTemplateColumn.CellEditingTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>

编辑:

我编写了一个简单的帮助程序类,它允许在加载单元格模板时聚焦 XAML 指定的控件...结合 Aled 的回答,这非常接近我想要的!我只需要弄清楚如何将输入传递给焦点控件...

问题是按键事件在控件加载事件之前得到处理,所以我需要弄清楚如何将它们桥接在一起......或者完全研究一种新方法。

public sealed class FrameworkElementFocusHelper
{
private static readonly DependencyProperty FocusOnLoadProperty =
DependencyProperty.RegisterAttached("FocusOnLoad",
typeof(bool),
typeof(FrameworkElementFocusHelper),
new UIPropertyMetadata(FocusOnLoadPropertyChanged));

public static void FocusOnLoadPropertyChanged(DependencyObject source, DependencyPropertyChangedEventArgs e)
{
FrameworkElement element = (FrameworkElement)source;
element.Loaded -= FrameworElementFocusHelperLoadedEvent;
if ((bool)e.NewValue == true)
element.Loaded += FrameworElementFocusHelperLoadedEvent;
}

public static void SetFocusOnLoad(DependencyObject element, bool value)
{
element.SetValue(FocusOnLoadProperty, value);
}
public static bool GetFocusOnLoad(DependencyObject element)
{
return (bool)element.GetValue(FocusOnLoadProperty);
}

public static void FrameworElementFocusHelperLoadedEvent(object sender, RoutedEventArgs e)
{
((FrameworkElement)sender).Focus();
}
}

用法:

<DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate>
<DatePicker SelectedDate="{Binding Date}" rt:FrameworkElementFocusHelper.FocusOnLoad="true"/>
</DataTemplate>
</DataGridTemplateColumn.CellEditingTemplate>

最佳答案

我有一种方法至少可以让您通过按键进入编辑模式。

首先是我的一个扩展类,它提供了一些方法来以编程方式获取行/列(在这种情况下并非所有方法都是必需的):

namespace MyApp.Extensions
{
/// <summary>
/// Helper methods for the WPF DataGrid.
/// </summary>
public static class DataGridExtensions
{
/// <summary>
/// Gets a specific row from the data grid. If the DataGrid is virtualised the row will be scrolled into view.
/// </summary>
/// <param name="grid">The DataGrid.</param>
/// <param name="rowIndex">Row number to get.</param>
/// <returns></returns>
public static DataGridRow GetRow(this DataGrid grid, int rowIndex)
{
var row = (DataGridRow)grid.ItemContainerGenerator.ContainerFromIndex(rowIndex);
if (row == null)
{
grid.UpdateLayout();
grid.ScrollIntoView(grid.Items[rowIndex]);
row = (DataGridRow)grid.ItemContainerGenerator.ContainerFromIndex(rowIndex);
}
return row;
}

/// <summary>
/// Get the selected row.
/// </summary>
/// <param name="grid">DataGridRow.</param>
/// <returns>DataGridRow or null if no row selected.</returns>
public static DataGridRow GetSelectedRow(this DataGrid grid)
{
return (grid.SelectedIndex) < 0 ? null : (DataGridRow)grid.ItemContainerGenerator.ContainerFromIndex(grid.SelectedIndex);
}

/// <summary>
/// Gets a specific cell from the DataGrid.
/// </summary>
/// <param name="grid">The DataGrid.</param>
/// <param name="row">The row from which to get a cell from.</param>
/// <param name="column">The cell index.</param>
/// <returns>A DataGridCell.</returns>
public static DataGridCell GetCell(this DataGrid grid, DataGridRow row, int column)
{
if (row == null) return null;

var presenter = GetVisualChild<DataGridCellsPresenter>(row);
if (presenter == null)
{
// Virtualised - scroll into view.
grid.ScrollIntoView(row, grid.Columns[column]);
presenter = GetVisualChild<DataGridCellsPresenter>(row);
}

return (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
}

/// <summary>
/// Gets a specific cell from the DataGrid.
/// </summary>
/// <param name="grid">The DataGrid.</param>
/// <param name="row">The row index.</param>
/// <param name="column">The cell index.</param>
/// <returns>A DataGridCell.</returns>
public static DataGridCell GetCell(this DataGrid grid, int row, int column)
{
var rowContainer = grid.GetRow(row);
return grid.GetCell(rowContainer, column);
}

/// <summary>
/// Gets the currently selected (focused) cell.
/// </summary>
/// <param name="grid">The DataGrid.</param>
/// <returns>DataGridCell or null if no cell is currently selected.</returns>
public static DataGridCell GetSelectedCell(this DataGrid grid)
{
var row = grid.GetSelectedRow();
if (row != null)
{
for (int i = 0; i < grid.Columns.Count; i++)
{
var cell = grid.GetCell(row, i);
if (cell.IsFocused)
return cell;
}
}
return null;
}

/// <summary>
/// Helper method to get a particular visual child.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="parent"></param>
/// <returns></returns>
private static T GetVisualChild<T>(Visual parent) where T : Visual
{
T child = default(T);
int numVisuals = VisualTreeHelper.GetChildrenCount(parent);
for (int i = 0; i < numVisuals; i++)
{
var v = (Visual)VisualTreeHelper.GetChild(parent, i);
child = v as T ?? GetVisualChild<T>(v);
if (child != null)
{
break;
}
}
return child;
}
}
}

现在向 Datagrid 上的 PreviewKeyDown 事件添加一个处理程序。

<DataGrid ItemsSource="{Binding MyData}" PreviewKeyDown="MyDataGrid_OnPreviewKeyDown">

这是处理程序:

private void MyDataGrid_OnPreviewKeyDown(object sender, KeyEventArgs e)
{
var dg = sender as DataGrid;

// alter this condition for whatever valid keys you want - avoid arrows/tab, etc.
if (dg != null && !dg.IsReadOnly && e.Key == Key.Enter)
{
var cell = dg.GetSelectedCell();
if (cell != null && cell.Column is DataGridTemplateColumn)
{
cell.Focus();
dg.BeginEdit();
e.Handled = true;
}
}
}

有点花哨,但似乎有效。将按键传递给编辑控件可能并不难。

我确实通过创建自己的 DataGridXYZColumn 类来研究另一种方法,但是有一个主要问题是处理键盘输入的方法被标记为内部方法并且不可覆盖,所以我只剩下这个方法了!

关于c# - 使用 DataGridTemplateColumn 在按键时开始编辑模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28163566/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com