WPF XamdataGrid优化

时间:2013-08-23 08:48:13

标签: c# .net wpf infragistics xamdatagrid

我在优化xamdatagrid方面遇到了问题。 我正在尝试使用它 http://www.infragistics.com/community/blogs/kiril_matev/archive/2010/10/26/optimizing-xamdatagrid-performance.aspx

但是当我下载控件的样式时,我得到的错误是Object引用未设置为对象的实例。

你可以在截图上看到这个。 enter image description here

或者这个。行:336

<Setter Property="TemplateCardView">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type igDP:DataRecordPresenter}">
                <igWindows:CardPanel x:Name="baseGrid" Background="{TemplateBinding Background}">
                    <!-- Record Content -->
                    <Rectangle Fill="{DynamicResource {ComponentResourceKey {x:Type igDP:XamDataGrid}, CardBackground}}" />
                    <ContentPresenter x:Name="PART_RecordContentSite" Content="{TemplateBinding DataContext}" ContentTemplate="{TemplateBinding {ComponentResourceKey {x:Type igDP:DataRecordPresenter}, RecordContentAreaTemplate}}" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
                </igWindows:CardPanel>
            </ControlTemplate>
        </Setter.Value>
    </Setter>

错误表示<ControlTemplate..>

如果我删除

Fill="{DynamicResource {ComponentResourceKey {x:Type igDP:XamDataGrid}, CardBackground}}"

错误不会

请告诉我有什么问题?

1 个答案:

答案 0 :(得分:1)

尝试以下方法:

<Rectangle Fill="{DynamicResource {ComponentResourceKey
TypeInTargetAssembly={x:Type igDP:XamDataGrid},
ResourceId=CardBackground}}" />

我觉得你有一个CardBackground的属性,也许你有一个像下面问题中的人一样的错误:Getting a ComponentResourceKey to Work?