带有示例数据源的 Xceed DataGridCollectionViewSource

Xceed DataGridCollectionViewSource with Sample Data Source

为 WPF 使用 Xceed DataGrid

如何使用生成的示例数据源(在 Expression Blend 中生成)作为 DataGridCollectionViewSource 的源?可能吗?

    <xcdg:DataGridCollectionViewSource x:Key="cvsSample"
                                     Source="{Binding Source={x:Static Application.Current},Path=SampleDataSource}"/>

这样做会引发错误:

A value of type 'DataGridCollectionViewSource' cannot be added to a collection or dictionary of type 'UIElementCollection'.

我可以像这样直接在 DataGridControl 中设置它:

    <xcdg:DataGridControl ItemTemplate="{DynamicResource ItemTemplate}" 
                      ItemsSource="{Binding Collection, Source={StaticResource SampleDataSource}}"
                      UpdateSourceTrigger="CellContentChanged"
                      Margin="10">
    </xcdg:DataGridControl>

但我想使用 DataGridCollectionViewSource,因为它允许您使用过滤、分组等功能。

试试这个:

XAML:

<Window x:Class="WpfApp1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid"
        xmlns:local="clr-namespace:WpfApp1"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Window.Resources>
        <xcdg:DataGridCollectionViewSource x:Key="cvsSample" Source="{Binding}" />
    </Window.Resources>
    <Grid>
        <xcdg:DataGridControl ItemsSource="{Binding Source={StaticResource cvsSample}}"/>
    </Grid>
</Window>

CS:

using Xceed.Wpf.Samples.SampleData;

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();

        DataContext = SampleDataProvider.GetProducts();
    }
}

看看jstreet的回答,如果对你不起作用,你可以试试我做的。

在Visual Studio中转到项目>添加引用>扩展并添加Xceed.Wpf.DataGrid.Samples.SampleData(记得勾选旁边的小盒子)。

App.xaml.cs

    public partial class App : System.Windows.Application
{
    protected override void OnStartup(StartupEventArgs e)
    {
        Xceed.Wpf.DataGrid.Licenser.LicenseKey = "XXXXX-XXXXX-XXXXX-XXXX";

        DataSet musicDataSet = Xceed.Wpf.DataGrid.Samples.SampleData.DataProvider.GetMusicLibraryDataSet();
        m_songs = musicDataSet.Tables["Songs"];

        base.OnStartup(e);
    }

    private DataTable m_songs;

    public DataTable Songs
    {
        get
        {
            return m_songs;
        }
    }
}

MainWindow.xaml

<Window.Resources>
    <xcdg:DataGridCollectionViewSource x:Key="cvsSongs"
                                     Source="{Binding Source={x:Static Application.Current},Path=Songs}">
    </xcdg:DataGridCollectionViewSource>
</Window.Resources>

<Grid>
    <xcdg:DataGridControl ItemsSource="{Binding Source={StaticResource cvsSongs}}"/>
</Grid>

不敢相信我费了这么大劲才错过了一个参考...