带有示例数据源的Xceed DataGridCollectionViewSource

时间:2017-08-29 11:58:50

标签: c# wpf xaml xceed xceed-datagrid

将Xceed DataGrid用于WPF

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

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

这样做会引发错误:

  

“DataGridCollectionViewSource”类型的值无法添加到“UIElementCollection”类型的集合或字典中。

我可以直接在DataGridControl中设置它,如下所示:

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

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

2 个答案:

答案 0 :(得分:1)

试试这个:

enter image description here

<强> 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();
    }
}

答案 1 :(得分:1)

看看jstreet的答案,但如果这对你不起作用,你可以尝试做我做的事。

在Visual Studio中,转到 Project&gt;添加参考&gt;扩展程序并添加 Xceed.Wpf.DataGrid.Samples.SampleData (请记得检查它旁边的小方框)。

<强> App.xaml.cs

int a=5;
int c=2;
int b=a++ * (c+10)/ (a+1);
Console.WriteLine(b);

<强> MainWindow.xaml

    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;
        }
    }
}

无法相信我为了错过参考而挣扎这么多......