在大型wpf数据网格中移动/隐藏列的性能问题

时间:2011-12-01 05:15:24

标签: c# wpfdatagrid

我使用wpf datagrid显示大量数据(大约100列和1000行)。列绑定到使用typedescripter动态添加的属性。默认情况下,datagrid显示所有列,但是我们添加了允许用户仅查看所有列的子集的功能,并且它们还可以更改显示列的顺序。我目前通过切换列的visibility属性并更改其displayindex来实现此目的。然而,这样做的表现真的很糟糕。

以下是重现问题的示例

XAML看起来很直接

<Window x:Class="WpfDataGridTestApplication.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    WindowState="Maximized">
<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto"></RowDefinition>
        <RowDefinition Height="*"></RowDefinition>
    </Grid.RowDefinitions>
    <StackPanel Grid.Row="0" Height="Auto" Margin="5">
        <CheckBox x:Name="ApplyColumns" Width="200" Margin="5" Checked="CheckBox_Checked" Unchecked="CheckBox_Checked">Show Predefined Columns</CheckBox>
    </StackPanel>
    <DataGrid 
        x:Name="Grid" EnableColumnVirtualization="False"
         EnableRowVirtualization="False"
        Grid.Row="1" SelectionUnit="Cell"
        ItemsSource="{Binding MyDataView}">
    </DataGrid>
</Grid>

背后的代码如下

    public partial class MainWindow : Window
{
    /// <summary>
    /// this dictionary stores the column name of columns to display and their displayIndex
    /// </summary>
    Dictionary<string,int> _predefinedColumns=new Dictionary<string, int>()
                                                  {
                                                      {"Column_8",0},
                                                      {"Column_9",1},
                                                      {"Column_11",2},
                                                      {"Column_14",3},
                                                      {"Column_12",4},
                                                      {"Column_34",5},
                                                      {"Column_78",6},
                                                      {"Column_54",7},
                                                      {"Column_88",8},
                                                      {"Column_98",9},
                                                      {"Column_90",10},
                                                      {"Column_51",11},
                                                      {"Column_100",12},
                                                      {"Column_35",13},
                                                      {"Column_112",14},
                                                      {"Column_101",15}
                                                  };
    public MainWindow()
    {
        InitializeComponent();
        DataContext = new MyClassViewModel();
    }

    /// <summary>
    /// Toggle display of only subset of columns
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    private void CheckBox_Checked(object sender, RoutedEventArgs e)
    {
        if (ApplyColumns.IsChecked ?? false)
        {
            foreach (var col in this.Grid.Columns)
            {
                if (_predefinedColumns.ContainsKey(col.Header as string))
                {
                    col.Visibility = Visibility.Visible;
                    col.DisplayIndex = _predefinedColumns[col.Header as string];
                }
                else
                {
                    col.Visibility = Visibility.Collapsed;
                }
            }
        }
        else
        {
            foreach (var col in this.Grid.Columns)
            {
                col.Visibility = Visibility.Visible;
                var header = col.Header.ToString();
                col.DisplayIndex = Int32.Parse(header.Substring(7)) - 1;
            }
        }
    }
}

此视图模型使用手动创建的DataTable重现大数据。但是在datagrid背后的实际代码中,使用typedescripter

添加动态属性绑定到类
    public class MyClassViewModel
{
    public DataView MyDataView
    {
        get
        {
            var dt = new DataTable();
            foreach (var colNum in Enumerable.Range(1, 120))
            {
                dt.Columns.Add(String.Format("Column_{0}", colNum), Type.GetType("System.Int32"));
            }

            var r = new Random();
            for (int x = 1; x <= 1000; x++)
            {
                var dr = dt.NewRow();
                foreach (var colNum in Enumerable.Range(1, 120))
                {
                    dr[String.Format("Column_{0}", colNum)] = r.Next(100);
                }
                dt.Rows.Add(dr);
            }
            return dt.DefaultView;
        }
    }
}

我试过以下但到目前为止没有运气

1.如果我打开行和列虚拟化,性能会更好。然而,这会破坏滚动性能,这是不可接受的(特别是如果你试着拖动拇指) 2.我没有更改显示和可见性,而是尝试删除所有列,然后仅添加所需的列,但它也不会影响性能。

我真的很感激任何帮助。我们不希望以牺牲不良滚动性能为代价来提高性能。因此,如果需要启用虚拟化,我们如何才能提高滚动性能。或者有更好的方法来实现良好的滚动性能和使用如此大的数据网格进行列显示/隐藏/移动的良好性能。

1 个答案:

答案 0 :(得分:1)

在使用较大的数据集时,您确实应该启用Virtualization,否则每个单元格都会经过布局/测量通过,即使它没有在屏幕上呈现。我通过使用ScrollViewer.IsDeferredScrollingEnabled =“False”来调整滚动行为取得了一些成功,但总的来说,在WPF数据网格中使用大数据集的性能并没有太多运气。