我有一个带有以下事件触发器的 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
很确定这是一个愚蠢的错误(发誓我过去已经做过一百万次了)但现在似乎无法弄清楚