0

我是 XAML、WPF 和数据绑定的新手,所以这可能是一个愚蠢的问题。我有一个带有 PurchaseTransactions 集合的 VM,AllTransactionViewModel。我通过资源字典有一个视图,它在 ListView 中呈现集合中的每个 PurchaseTransaction。我可以让视图在主窗口中呈现,但我没有填充数据。

查看 - AllTransactionsView.Xaml:

<UserControl x:Class="BudgetApp.Views.AllTransactionsView"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         mc:Ignorable="d" d:DesignWidth="300" Height="97">
<UserControl.Resources>
    <CollectionViewSource
        x:Key="AllTrans"
        Source="{Binding Path=AllTransactions}"/>
</UserControl.Resources>
<ListView
    DataContext="{StaticResource AllTrans}"
    ItemsSource="{Binding}" >
    <ListView.View>
        <GridView>
            <GridViewColumn
                Header="Name"
                DisplayMemberBinding="{Binding Path=Name}"
                Width="Auto"/>
            <GridViewColumn
                Header="Transaction Type"
                DisplayMemberBinding="{Binding Path=TransactionType}" />
            <GridViewColumn
                Header="Amount"
                DisplayMemberBinding="{Binding Path=Amount}"
                />
        </GridView>
    </ListView.View>
</ListView>

MainWindowResources.Xaml 中的数据模板:

<ResourceDictionary 
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="clr-namespace:BudgetApp.ViewModels"
xmlns:vw="clr-namespace:BudgetApp.Views">

<DataTemplate x:Key="allTransTemplate" DataType="{x:Type vm:AllTransactionViewModel}">
    <vw:AllTransactionsView/>
</DataTemplate>

<DataTemplate DataType="{x:Type vm:TransactionViewModel}">
    <vw:TransactionView />
</DataTemplate>

主窗口.XAML:

<Window x:Class="BudgetApp.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:vm="clr-namespace:BudgetApp.ViewModels"
    xmlns:vw="clr-namespace:BudgetApp.Views"
    Title="MainWindow" Height="590.717" Width="767.194">
<Window.Resources>
    <ResourceDictionary Source="MainWindowResources.xaml"/>
</Window.Resources>
<Grid>
    <ContentControl 
        Content="{Binding AllTransactions}"
        ContentTemplate="{StaticResource allTransTemplate}">
    </ContentControl>


</Grid>

最后,AllTransactionViewModel 类:

class AllTransactionViewModel: ViewModelBase
{
    private BudgetEntities _context;

    public AllTransactionViewModel()
    {
        _context = new BudgetEntities();
        AllTransactions = new ObservableCollection<TransactionViewModel>();
        GetAllTransactions();
    }

    public void GetAllTransactions()
    {
        foreach (var transaction in _context.PurchaseTransactions)
        {
            AllTransactions.Add(new TransactionViewModel
            (
                transaction.TransactionDate,
                transaction.TransactionType.Description,
                transaction.Name,
                transaction.Memo,
                (double)transaction.Amount,
                transaction.IsApproved,
                transaction.PurchaseType.Description
            )
            );
        }
    }

    public ObservableCollection<TransactionViewModel> AllTransactions { get; private set; }
}

我在这里做错了什么?

4

1 回答 1

1

首先,使用CollectionViewSource绑定时 (on ListView) 应该是:

ItemsSource="{Binding Source={StaticResource AllTrans}}"

在这种情况下,您不需要数据上下文。如果您的代码比显示的多,并且您实际上需要数据上下文,则将项目源保留为原始源,而是更改数据上下文:

DataContext="{Binding Source={StaticResource AllTrans}}"

“奇怪”绑定使用的原因是您实际上需要CollectionViewSource.View作为项目源。当源对象为 CVS 时,绑定有特殊处理,它会自动获取视图。StaticResource没有特殊处理,你不能使用{StaticResource AllTrans.View},因为它意味着获取类型属性View中的键AllTrans,一个不存在的类型。

[作为旁注,也许DataContext="{StaticResource AllTrans}" ItemsSource="{Binding View}"会起作用,从未尝试过]

以上应该填写项目,但我不确定数据模板与数据类型的冲突以及您在列上TransactionViewModel使用的事实会发生什么。DisplayMemberBinding这可能会弄乱项目,但您仍然应该能够看到列表视图中有一些项目。

于 2013-11-04T17:53:34.857 回答