只能在datacontrolgrid中的一个单元格/列中编辑一次

时间:2016-03-23 19:01:08

标签: c# wpf xceed datagridcolumn

我有一个datacontrolgrid有三列并且绑定到一个列表并且还有一个clickevent(但是我需要将它与键盘上的键组合才能编辑所选的单元格/列)。我只想编辑其中一列,因此在xaml文件中的特定列标记中有一个EditTemplate,其中一个datatemplate包含一个带有keydown事件的文本框,我在数据库中插入/更新它之前在实体上设置值。

在点击方法中我还检查是否按下了特定键,如果是,我调用BeginEdit和Focus。但似乎EndEdit永远不会被调用,因为数据网格总是在第一个编辑的单元格之后将标记isbeingedited设置为true,并且它以某种方式阻止我再次编辑。有没有办法在keydown方法中提交编辑,只能监听回车键?

XAML

        <xcdg:DataGridControl Grid.Row="1" 
                              VerticalAlignment="Top"
                              MouseRightButtonUp="MyMethod_RightClick"
                              ItemsSource="{Binding ListOfObjects}"
                              AutoCreateColumns="False"
                              Height="1000"
                              NavigationBehavior="RowOnly">

            <xcdg:DataGridControl.Columns>
                <xcdg:Column FieldName="Name" IsMainColumn="False" MinWidth="500">
                    <xcdg:Column.CellEditor>
                        <xcdg:CellEditor>
                            <xcdg:CellEditor.EditTemplate>
                                <DataTemplate>
                                    <StackPanel Orientation="Horizontal">
                                        <TextBox x:Name="txtbox" KeyDown="txtbox_KeyDown" Text="{xcdg:CellEditorBinding}" />
                                    </StackPanel>
                                </DataTemplate>
                            </xcdg:CellEditor.EditTemplate>
                        </xcdg:CellEditor>
                    </xcdg:Column.CellEditor>

XAML代码隐藏

    private void MyMethod_RightClick(object sender, RoutedEventArgs e)
    {
        DataGridControl dataGrid = (DataGridControl)sender;
        MyObj myObj = (MyObj)dataGrid.CurrentItem;

        if (Keyboard.IsKeyDown(Key.E))
        {
            //i'm coming here all times i'm trying to edit records in one column but i'm only able to edit the first time i'm trying.
            dataGrid.BeginEdit();
            dataGrid.Focus();
            return;
        }
        //in case of no edit i do some other stuff...
    }


    private void txtbox_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.Key != Key.Enter) return;

        var txtboxvalue = ((TextBox)sender).DataContext.ToString();
        //do stuff and
        //set value on entity property and update record in db...
    }

0 个答案:

没有答案