11

我有一个带有以下事件触发器的 UserControl:

<UserControl x:Class="TestApp.Views.MyUserControl"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
         >

<i:Interaction.Triggers>
    <i:EventTrigger EventName="Loaded">
        <i:InvokeCommandAction Command="{Binding OnLoadedCommand}" />
    </i:EventTrigger>
</i:Interaction.Triggers>

它是通过 UserControl 的构造函数设置的(请忽略 ServiceLocator ..这只是一个快速原型):

public MyUserControl()
{
    InitializeComponent();

    DataContext = ServiceLocator.Current.GetInstance<DirectorySearchViewModel>();
}

在我的视图模型中,我有以下内容:

    public ICommand OnLoadedCommand { get; private set; }

    public MyUserControl()
    {
        OnLoadedCommand = new DelegateCommand(OnLoaded);
    }

    public void OnLoaded()
    {
    }

OnLoaded 永远不会被调用。如果我将 EventName 更改为 ..MouseDown,那么它可以工作,但它不适用于 Loaded

很确定这是一个愚蠢的错误(发誓我过去已经做过一百万次了)但现在似乎无法弄清楚

4

2 回答 2

10
public MyUserControl()
{
    DataContext = ServiceLocator.Current.GetInstance<DirectorySearchViewModel>();
    InitializeComponent();
}

贵族。

于 2013-03-18T21:03:27.230 回答
3

对于偶然发现此问题的其他任何人,您可以在没有这样的代码的情况下做到这一点:

<UserControl x:Class="TestApp.Views.MyUserControl"
    ... etc...
     x:Name="theControl"
     >

    <i:Interaction.Triggers>
        <i:EventTrigger EventName="Loaded">
            <i:InvokeCommandAction
                Command="{Binding ElementName=theControl, Path=OnLoadedCommand}"/>
        </i:EventTrigger>
    </i:Interaction.Triggers>
于 2014-08-20T10:39:03.950 回答