WPF,MVVM和嵌套UserControls的事件处理

时间:2013-04-26 20:48:02

标签: c# .net wpf xaml mvvm

我有一个WPF应用程序,我正在尝试实现MVVM。主窗口有一个viewmodel和一个自定义用户控件。此用户控件包含一个文本框和一个按钮,并从主父窗口共享datacontext。一切都很好......

我已经能够将文本框绑定到viewmodel中的变量,并且它可以成功运行。但是......对于我的生活,我无法将事件处理程序从按钮绑定到viewmodel。我一直收到以下错误:

Unable to cast object of type 'System.Reflection.RuntimeEventInfo' to type 'System.Reflection.MethodInfo'.

我知道这是MVVM新手的常见问题。我在网上搜索过,似乎没什么用。谁能解释我做错了什么?

以下是一些示例代码: 主窗口:

<Window x:Class="Mvvm.View.MainWindowView"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:view="clr-namespace:ZeeZor.Kiosk.Mvvm.View"
        WindowStyle="None"
        WindowState="Maximized" >
    <Grid >
        <view:ControlPanelView
            Margin="5, 0, 5, 0"
            HorizontalAlignment="Stretch"
            VerticalAlignment="Stretch" >
        </view:ControlPanelView>            
    </Grid>
</Window>

用户控件:

<UserControl x:Class="Mvvm.View.ControlPanelView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" >

    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="*" />
            <RowDefinition Height="*" />
        </Grid.RowDefinitions>

        <TextBlock Grid.Row="0" TextAlignment="Right" Text="{Binding Total}" Margin="0,5,20,5" />
        <Button Grid.Row="1" Content="Test" Click="{Binding Path=OnClick}" Width="220" Height="100"/>
    </Grid>
</UserControl>

1 个答案:

答案 0 :(得分:5)

您应该在按钮上使用Command,并在ViewModel中使用ICommand属性。

Click属性需要代码隐藏文件中的方法,该方法不能“绑定”OnClick。因此,要么使用Command,要么只在.xaml.cs文件中键入应该在单击按钮时调用的方法名称。