Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/wpf/13.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在wpf中的devexpress中的DataControlDetailDescriptor中填充网格_Wpf_Windows_Devexpress - Fatal编程技术网

如何在wpf中的devexpress中的DataControlDetailDescriptor中填充网格

如何在wpf中的devexpress中的DataControlDetailDescriptor中填充网格,wpf,windows,devexpress,Wpf,Windows,Devexpress,当网格位于wpf中devexpress中的DataControlDetailDescriptor内时,如何填充网格 什么是ItemsSourcePath?我应该给这个ItemsSourcePath指定哪个值。 dxg:DataControlDetailDescriptor项SourcePath=“AccessProfiles” 我想你应该先检查一下。 还完整描述了其帮助参考。 相关示例: <dxg:GridControl AutoPopulateColumns="True" Hor

当网格位于wpf中devexpress中的DataControlDetailDescriptor内时,如何填充网格

什么是ItemsSourcePath?我应该给这个ItemsSourcePath指定哪个值。 dxg:DataControlDetailDescriptor项SourcePath=“AccessProfiles”


我想你应该先检查一下。 还完整描述了其帮助参考。
相关示例:

  <dxg:GridControl AutoPopulateColumns="True"   HorizontalAlignment="Left"         Margin="-9,52,0,0" Name="gridControl1" VerticalAlignment="Top" Height="415" Width="623" MasterRowExpanding="gridControl1_MasterRowExpanding" AutoExpandAllGroups="True" >
        <!--ItemsSource="{Binding Path=Bindd, Mode=OneWay}"-->

        <dxg:GridControl.View>
            <dxg:TableView Name="tableView1" ShowTotalSummary="True" />
        </dxg:GridControl.View>
        <dxg:GridControl.DetailDescriptor>
            <dxg:DataControlDetailDescriptor     x:Name="detail1" ItemsSourceBinding="{Binding Path=Bindd, Converter={StaticResource AlternationConverter1}}">
                <dxg:DataControlDetailDescriptor.DataControl>
                    <dxg:GridControl Name="detailGrid" AutoPopulateColumns="True" >

                        <dxg:GridControl.View >

                            <dxg:TableView NavigationStyle="Row" ShowGroupPanel="False"  ShowTotalSummary="True" />
                        </dxg:GridControl.View>
                    </dxg:GridControl>
                </dxg:DataControlDetailDescriptor.DataControl>
            </dxg:DataControlDetailDescriptor>
        </dxg:GridControl.DetailDescriptor>
    </dxg:GridControl>