如何只为xamdatagrid中的选定行启用摘要?

时间:2012-06-15 16:47:45

标签: wpf xaml infragistics xamdatagrid

我正在使用infragistices网格开发一个wpf应用程序。我搜索了infragistics论坛,用Google搜索并没有找到任何内容,我确实发现devExpress网格确实支持this,但找不到类似的解决方案infragistics对应

我试图看看是否有办法让摘要仅在用户选择行时才能工作?任何帮助如何让这个工作将不胜感激 有没有人尝试过任何这样的条件汇总计算

1 个答案:

答案 0 :(得分:1)

如果您的网格位于变量dataGrid中,则此LINQ应该可以正常工作

    /// <summary>
    /// Gets a readonly list of the filtered selected records.
    /// </summary>
    public IList<DataRecord> SelectedRecords
    {
        get
        {
            return dataGrid.Records.Cast<DataRecord>().Where(r => r.IsFilteredOut != true && r.IsSelected && !r.IsDeleted).ToList().AsReadOnly();
        }
    }