1

我有一个使用 MVVM Light 的 WPF 项目。在项目的一个页面上ConnectionPage,我有一个ctlSqlConnection可以引发Connected事件的 UserControl ( )。我正在尝试使用 MVVM Light 来拦截此事件并执行在的 viewmodel 上EventToCommand调用的命令(不是 UserControl 自己的 ViewModel!),但这似乎不起作用。也就是说,什么都没有发生。NavigateToDatabasePageCommandConnectionPage

由于页面DataContextConnectionPageUI 已正确填充,因此设置正常。

我知道该事件正在引发,因为我还连接了一个传统的 .NET 处理程序,这正在被击中。

我正在使用 MVVM Light 5.3 版,以防万一这有任何影响?

我是 MVVM 和工具包的新手,所以我希望我在做一些愚蠢的事情。

更新

从那以后,我在声明为的 UserControl 中查看了事件本身

public event EventHandler<ConnectionSettingViewModel> Connected;

但是当我把另一个非通用事件处理程序改为:

        public event EventHandler ConnectedWithNoArgs;

这使它工作!?

所以,

  1. 这是否意味着交互部分无法处理通用事件声明,或者我做的不对?
  2. 我如何将 EventArgs 从事件传递到 Nav() 方法

这是 XAML 的ConnectionPage

<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib" 
x:Class="Views.ConnectionPage"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:data="clr-namespace:Utilities.Data;assembly=Utilities"
xmlns:util="clr-namespace:Utilities.Data;assembly=Utilities"
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
xmlns:command="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.Platform"

mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300"
Title="ConnectionPage"
DataContext="{Binding Source={StaticResource Locator}, Path=ConnectionPageViewModel}" x:Name="connPage" >

<Grid x:Name="rootGrid">
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto"/>
        <RowDefinition/>
    </Grid.RowDefinitions>

    <Label Grid.Row="0" Content="Create / Select Sql Server connection" Style="{StaticResource HeaderStyle}"/>

    <util:SqlServerConnectionControl Grid.Row="1" x:Name="ctlSqlConnection" DataContext="{Binding SqlServerConnectionControlViewModel}">
        <i:Interaction.Triggers>
            <i:EventTrigger EventName="Connected">
                <command:EventToCommand Command="{Binding ElementName=connPage, Path=DataContext.NavigateToDatabasePageCommand}" />
            </i:EventTrigger>
        </i:Interaction.Triggers>
    </util:SqlServerConnectionControl>
</Grid>

这是ConnectionPageViewModel

    public class ConnectionPageViewModel : ViewModelBase
{
    SqlServerConnectionControlViewModel _serverCtrlVM;
    Avalon _avalon;
    IFrameNavigationService _navService;

    public ConnectionPageViewModel(IFrameNavigationService navigationService, Avalon avalon)
    {
        _avalon = avalon;
        _navService = navigationService;
        _serverCtrlVM = new SqlServerConnectionControlViewModel(avalon.ConnectionStringManager);

        NavigateToDatabasePageCommand = new RelayCommand(Nav);
    }
    private void Nav()
    {
       // NOT GETTING HERE!!!
        _navService.NavigateTo("DatabasePage");
    }

    public SqlServerConnectionControlViewModel SqlServerConnectionControlViewModel
    {
        get { return _serverCtrlVM; }
    }

    public RelayCommand NavigateToDatabasePageCommand { get; private set; }

}
4

1 回答 1

1

好的,我想我已经弄清楚了,以防万一这对其他人有帮助。

事件Connectedpublic event EventHandler<ConnectionSettingViewModelEventArgs> Connected;

我添加PassEventArgsToCommand="True"EventToCommandxaml。我改为RelayCommandwhere RelayCommand<T>T: EventArgs (这是重要的一点!)并用作ConnectionSettingViewModelEventArgsT。

于 2017-01-31T16:10:46.527 回答