WPF数据绑定,MVVM和路由事件
当我尝试使用命令委托绑定在我的XAML中调用UserControl的自定义RoutedEvent时,我得到以下异常:
Exception thrown: 'System.Windows.Markup.XamlParseException' in PresentationFramework.dll
Additional information: 'Provide value on 'System.Windows.Data.Binding' threw an exception.'
我的WPF应用程序使用MVVM和IOC,因此所有的逻辑都在视图模型中。
视图的DataContext在资源字典中设置:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vw="clr-namespace:MyApp.Order.View"
xmlns:vm="clr-namespace:MyApp.Order.ViewModel">
<DataTemplate DataType="{x:Type vm:OrderViewModel}">
<vw:OrderView />
</DataTemplate>
等等
我在这个解决方案中的另一个项目中有一个用户控件,恰好是一个键盘,我已经连接了一个路由事件,如下所示:
public partial class MainKeyboard : UserControl
{
public static DependencyProperty TextProperty;
public static DependencyProperty FirstLetterToUpperProperty;
// Create a custom routed event by first registering a RoutedEventID
// This event uses the bubbling routing strategy
public static readonly RoutedEvent TapEvent = EventManager.RegisterRoutedEvent(
"Tap", RoutingStrategy.Bubble,
typeof(RoutedEventHandler),
typeof(MainKeyboard));
// Provide CLR accessors for the event
public event RoutedEventHandler Tap
{
add { AddHandler(TapEvent, value); }
remove { RemoveHandler(TapEvent, value); }
}
// This method raises the Tap event
void RaiseTapEvent()
{
RoutedEventArgs newEventArgs = new RoutedEventArgs(MainKeyboard.TapEvent);
RaiseEvent(newEventArgs);
}
现在,当我使用我的XAML declration来消费这个事件,并像以前一样将Command绑定到视图模型的命令委托上时:
<assets:MainKeyboard Tap="{Binding DoTapCommandInViewModel}" />
我得到一个错误,但我可以在其他地方执行此操作,例如在此代码上方的按钮中:
<Button Content="GetStarted"
Command="{Binding DoTapCommandInViewModel}"
Style="{StaticResource GetStartedButton}" />
对我而言,工作是在这个XAML文件后面的代码中调用一个方法:
<assets:MainKeyboard Tap="MainKeyboard_OnTap"/>
按钮和键盘用户控件的datacontext是相同的; 他们生活在同一个角度。
那么为什么我不能直接将这个事件绑定到一个命令?
Dytori是对的; 我需要一个控件声明的事件触发器。 啊Wpf ...
<assets:MainKeyboard>
<b:Interaction.Triggers>
<b:EventTrigger EventName="Tap">
<b:InvokeCommandAction Command="{Binding DoTapTapTap}"/>
</b:EventTrigger>
</b:Interaction.Triggers>
</assets:MainKeyboard>
链接地址: http://www.djcxy.com/p/56179.html