0

ウィンドウ内にいくつかのボタンとデータグリッドがあります。

<Button>Save</Button>
<Button>Back</Button>
<DataGrid x:Name="data" ItemsSource="{Binding Scores}" />

NewItemPlaceholder-rowを編集すると、最初の値を変更したときに新しいアイテムが作成されます(ただし、新しいNewItemPlaceholder-rowは作成されません)。最後の値を編集してTabキーを押すと、新しい行が生成されます。ただし、カーソルは、その新しい行の最初のセルではなく、[保存]ボタンに移動します。

どうすればグリッドに焦点を合わせ続けることができますか?

完全を期すために:私はItemsSourceとしてObservableCollectionを使用しています。

4

3 に答える 3

4

KeyboardNavigation.TabNavigation添付プロパティを使用します。

<DataGrid x:Name="data" 
          ItemsSource="{Binding Scores}" 
          KeyboardNavigation.TabNavigation="Cycle" />
于 2012-11-02T18:28:29.467 に答える
1

私はここで解決策を見つけました: DataGrid.RowEditEnding イベントによる行コミット後のフォーカス動作のカスタマイズ

private void data_RowEditEnding_1(object sender, DataGridRowEditEndingEventArgs e) {
    if (e.EditAction == DataGridEditAction.Commit) {
        if (e.Row.Item == data.Items[data.Items.Count - 2]) {
            var rowToSelect = data.Items[data.Items.Count - 1];
            int rowIndex = data.Items.IndexOf(rowToSelect);
            this.Dispatcher.BeginInvoke(new DispatcherOperationCallback((param) => {
                var cell = DataGridHelper.GetCell(data, rowIndex, 0);
                cell.Focus();
                data.BeginEdit();
                return null;
            }), DispatcherPriority.Background, new object[] { null });
        }
    }
}

ここから GetCell および GetRow メソッドを使用する: datagrid get cell index

static class DataGridHelper {
    static public DataGridCell GetCell(DataGrid dg, int row, int column) {
        DataGridRow rowContainer = GetRow(dg, row);

        if (rowContainer != null) {
            DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter>(rowContainer);

            // try to get the cell but it may possibly be virtualized
            DataGridCell cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
            if (cell == null) {
                // now try to bring into view and retreive the cell
                dg.ScrollIntoView(rowContainer, dg.Columns[column]);
                cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
            }
            return cell;
        }
        return null;
    }

    static public DataGridRow GetRow(DataGrid dg, int index) {
        DataGridRow row = (DataGridRow)dg.ItemContainerGenerator.ContainerFromIndex(index);
        if (row == null) {
            // may be virtualized, bring into view and try again
            dg.ScrollIntoView(dg.Items[index]);
            row = (DataGridRow)dg.ItemContainerGenerator.ContainerFromIndex(index);
        }
        return row;
    }

    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++) {
            Visual v = (Visual)VisualTreeHelper.GetChild(parent, i);
            child = v as T;
            if (child == null) {
                child = GetVisualChild<T>(v);
            }
            if (child != null) {
                break;
            }
        }
        return child;
    }
}
于 2012-11-02T23:23:43.373 に答える