我正在尝试使用EventToCommand初始化我的ViewModel,但命令没有触发。我怀疑这是因为触发器部分不在数据绑定容器内,但我怎么能在我的例子中这样做?我想尽可能坚持直接XAML。
<Window x:Class="MVVMSample.Home"
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"
xmlns:viewModels="clr-namespace:MVVMSample.ViewModels"
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
xmlns:cmd="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.Extras.WPF4"
d:DataContext="{d:DesignInstance Type=viewModels:HomeViewModel, IsDesignTimeCreatable=True}"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<viewModels:HomeViewModel x:Key="ViewModel" x:Name="ViewModel" />
</Window.Resources>
<i:Interaction.Triggers>
<i:EventTrigger EventName="Loaded">
<cmd:EventToCommand Command="{Binding LoadedCommand}" />
</i:EventTrigger>
</i:Interaction.Triggers>
<Grid DataContext="{StaticResource ViewModel}">
<TextBlock Text="{Binding PersonCount}" />
</Grid>
</Window>
答案 0 :(得分:1)
你是对的,datacontext是问题的一部分,但我会通过使用mvvm-light来解决它。
如果您使用的是MVVM_Light,那么您应该使用视图模型定位器。它是框架的主要支柱。我使用mvvm light来了解mvvm原理。我非常喜欢它,因为它很简单,让我可以尽可能快地学习。
在mvvm-light中,您在app.xaml中声明了viewmodellocator
<Application.Resources>
<ResourceDictionary>
<!--Global View Model Locator-->
<vm:ViewModelLocator x:Key="Locator" d:IsDataSource="True" />
</ResourceDictionary>
</Application.Resources>
然后在您的视图中(无论是用户控件还是窗口等),您将viewmodel“附加”到视图中,如下所示:注意DataContext声明。
<UserControl x:Class="FTC.View.TrackingListView"
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"
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
xmlns:cmd="http://www.galasoft.ch/mvvmlight"
mc:Ignorable="d"
DataContext="{Binding YourViewModel, Source={StaticResource Locator}}"
d:DesignHeight="700" d:DesignWidth="1000">
这样,来自mvvm light的视图模型定位器可以根据需要创建viewmodel的单例或唯一实例。它还可以使用IOC将服务注入到viewmodel的构造函数中。
例如,如果我有一个处理来自数据模型的人物对象的viewmodel,我创建一个执行CRUD操作的人员服务,然后在viewmodel构造函数参数中引用它。这允许我使用伪造的设计时数据或来自模型的真实数据。它还将所有问题都解耦,这就是mvvm的目的。
我建议您阅读更多关于MVVM-light框架的信息,并建立一个来自他们网站的样本galasoft。
希望这会有所帮助