我是MVVM世界的新手,我有像XAMl一样的
<UserControl x:Class="KeyDownMVVM.MainPage"
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"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
<Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="186,125,0,0" Name="button1" VerticalAlignment="Top" Width="75" />
</Grid>
</UserControl>
我想要handel userlcontrol keydown事件来捕获keyboadr修饰符和键,但是在MVVM模式中使用任何想法。我使用silverlight 4。大多数教程都讲述了具体的控制
答案 0 :(得分:1)
我建议在MVVMLight框架中查看“EventToCommand”。它允许您指定在viewmodel上调用命令的事件。有很多例子说明如何在SO或其他地方使用它。