WPF,创建自定义DataGridTextColumn以防止不需要的字符

本文关键字:不需要 字符 创建 自定义 DataGridTextColumn WPF | 更新日期: 2023-09-27 17:59:45

i WPF新手,我想防止用户输入字符,例如字符"-",所以我用以下代码创建了自定义DataGridTextColumn:

public class DataGridNumericColumn : DataGridTextColumn
{
    protected override object PrepareCellForEdit(FrameworkElement editingElement, RoutedEventArgs editingEventArgs)
    {
        var textBox = (TextBox) editingElement;
        textBox.PreviewTextInput += OnPreviewTextInput;
        return base.PrepareCellForEdit(editingElement, editingEventArgs);
    }

    private void OnPreviewTextInput(object sender, TextCompositionEventArgs e)
    {
        var textBox = (TextBox)sender;
        if (e.Text == "-")
            return;
        if (!this.IsNumeric(e.Text))
            e.Handled = true;
    }
}

和XAML:

<ZF:ZFDataGrid
        Grid.Row="4" Grid.Column="0" 
        HorizontalAlignment="Stretch" VerticalAlignment="Top"
        HorizontalContentAlignment="Stretch"
        VerticalContentAlignment="Stretch"
        CanUserAddRows="True"
        CanUserDeleteRows="False"
        CanUserResizeRows="False"
        CanUserReorderColumns="False"
        CanUserSortColumns="False"
        IsSynchronizedWithCurrentItem="True"
        SelectionUnit="Cell"
        SelectionMode="Single"
        Margin="3,3,3,0" 
        AutoGenerateColumns="False"
        AlternatingRowBackground="WhiteSmoke"
        RowHeaderWidth="30"
        FontSize="18"
        ItemsSource="{Binding POSModel}">
    <ZF:DataGridNumericColumn Header="Qty" Width="80" />
</ZF:ZFDataGrid>

自定义DataGridNumericColumn工作良好,除了当我第一次按下该字符时。如果我按F2编辑,或者双击列然后按键,一切都很好。

但是,如果我在不首先编辑单元格的情况下按键,则自定义DataGridNumericColumn将不起作用。

我在PrepareCellForEdit上设置了断点,代码就工作了。但是方法OnPreviewTextInput在我第二次按键时起作用。不是第一个。

有人能给我另一个解决方案吗?

编辑:

protected override object PrepareCellForEdit(FrameworkElement editingElement, RoutedEventArgs editingEventArgs)
    {
        var textBox = (TextBox) editingElement;
        textBox.PreviewTextInput += OnPreviewTextInput;
        textBox.TextChanged += OnTextChanged; //change here
        return base.PrepareCellForEdit(editingElement, editingEventArgs);
    }

该代码只运行一次,其余代码将由OnPreviewTextInput 处理

  private void OnTextChanged(object sender, TextChangedEventArgs e)
    {
        var textBox = (TextBox)sender;
        if (textBox.Text.Contains("-"))
        {
            textBox.TextChanged -= OnTextChanged;
            textBox.Text = "";
        }
    }

WPF,创建自定义DataGridTextColumn以防止不需要的字符

这是一个很好的方法,但我已经用过其他时候了,它通常工作得很好。

与其只使用PreviewTextInput,不如将其与TextChanged耦合。在第一个事件中,您只需将当前文本保存在后备字段中,然后在第二个事件中检查无效字符。如果输入了无效字符,则只需重新设置存储在字段中的前一个文本。

string oldText = string.Empty;
int oldcaret = 0;
protected override FrameworkElement GenerateEditingElement(DataGridCell cell, Object dataItem)
{
    var textBox = (TextBox)base.GenerateEditingElement(cell, dataItem);
    textBox.PreviewTextInput += OnPreviewTextInput;
    textBox.TextChanged += OnTextChanged;
    return textBox;
}
private void OnPreviewTextInput(object sender, TextCompositionEventArgs e)
{
    var textBox = (TextBox)sender;
    oldText = textBox.Text;
    oldCaret = textBox.CaretIndex;
}
private void OnTextChanged(object sender, TextChangedEventArgs e)
{
    var textBox = (TextBox)sender;
    if (textBox.Text.Contains("-"))
    {
        textBox.Text = oldText;
        textBox.CaretIndex = oldCaret;
    }
}

您可以尝试GenerateEditingElement:而不是PrepareCellForEdit

protected override FrameworkElement GenerateEditingElement(DataGridCell cell, Object dataItem)
{
    var textBox = (TextBox)base.GenerateEditingElement(cell, dataItem);
    textBox.PreviewTextInput += OnPreviewTextInput;
    return textBox;
}

它应该在PrepareCellForEdit之前调用,我想也应该在第一次处理键输入之前调用。