0

データグリッドでプログラムで selectItem を選択します。問題は、selectItem まで手動でスクロールする必要があることです。これを自動的に行う必要があります。今までいろいろ試しましたが、どれもうまくいきませんでした...

データグリッド:

        <DataGrid x:Name="coreServiceLogDataGrid"
              ItemsSource="{Binding}"
              IsReadOnly="True"
              RowDetailsVisibilityMode="VisibleWhenSelected"
              SelectionMode="Single"
              IsSynchronizedWithCurrentItem="True"
              SelectedItem="{Binding Path=CurrentCoreServiceLogDataItem,Source={StaticResource synchronizer}, Mode=TwoWay}"
              GotFocus="coreServiceLogDataGrid_GotFocus_1"
              Style="{DynamicResource ResourceKey=dataGridStyle}"
              ...>
              ...
    </DataGrid>

およびコードビハインドGotFocus:

        private void coreServiceLogDataGrid_GotFocus_1(object sender, System.Windows.RoutedEventArgs e) {
          if (coreServiceLogDataGrid.SelectedItem != null) {
            coreServiceLogDataGrid.ScrollIntoView(coreServiceLogDataGrid.SelectedItem);
          }
         }
4

1 に答える 1

0

過去に同様の問題に遭遇しました。に対してこれを行いましたが、このサイトで見つかっDataGridRowた の添付の動作に基づいています。TreeViewItem

のコードは次のcode-behindとおりです。

/// <summary>
/// Exposes attached behaviors that can be
/// applied to DataGridRow objects.
/// </summary>
public static class DataGridRowBehavior
{
    #region IsBroughtIntoViewWhenSelected

    public static bool GetIsBroughtIntoViewWhenSelected(DataGridRow dataGridRow)
    {
        return (bool)dataGridRow.GetValue(IsBroughtIntoViewWhenSelectedProperty);
    }

    public static void SetIsBroughtIntoViewWhenSelected(
      DataGridRow dataGridRow, bool value)
    {
        dataGridRow.SetValue(IsBroughtIntoViewWhenSelectedProperty, value);
    }

    public static readonly DependencyProperty IsBroughtIntoViewWhenSelectedProperty =
        DependencyProperty.RegisterAttached(
        "IsBroughtIntoViewWhenSelected",
        typeof(bool),
        typeof(DataGridRowBehavior),
        new UIPropertyMetadata(false, OnIsBroughtIntoViewWhenSelectedChanged));

    static void OnIsBroughtIntoViewWhenSelectedChanged(
      DependencyObject depObj, DependencyPropertyChangedEventArgs e)
    {
        DataGridRow item = depObj as DataGridRow;
        if (item == null)
            return;

        if (e.NewValue is bool == false)
            return;

        if ((bool)e.NewValue)
            item.Selected += OnDataGridRowSelected;
        else
            item.Selected -= OnDataGridRowSelected;
    }

    static void OnDataGridRowSelected(object sender, RoutedEventArgs e)
    {
        // Only react to the Selected event raised by the TreeViewItem
        // whose IsSelected property was modified. Ignore all ancestors
        // who are merely reporting that a descendant's Selected fired.
        if (!Object.ReferenceEquals(sender, e.OriginalSource))
            return;

        DataGridRow item = e.OriginalSource as DataGridRow;
        if (item != null)
            item.BringIntoView();
    }

    #endregion // IsBroughtIntoViewWhenSelected
}

で、XAML次のコードを のタグの間に配置しますDataGrid

<DataGrid.ItemContainerStyle>
    <Style TargetType="{x:Type DataGridRow}">
        <Setter Property="uc:DataGridRowBehavior.IsBroughtIntoViewWhenSelected" Value="True" />
    </Style>
</DataGrid.ItemContainerStyle>
/// note: uc is a namespace I have defined for where the DataGridRowBehavior class is located

追加コメント:とにSelectionUnit設定しています。これらのプロパティを変更すると、これが機能するかどうかに影響するかどうかはわかりません。FullRowSelectionModeSingle

于 2013-02-21T20:26:05.770 に答える