我正在使用MVVM模式制作WP8应用程序(Caliburn.Micro)。
我使用ListBox命名的ProgramsList,我想在Loaded时做点什么。
<ListBox Name="ProgamsList" ItemsSource="{Binding ProgramsList}" HorizontalAlignment="Stretch" FontFamily="Portable User Interface" Loaded="">
当不使用MVVM模式时,我可以使用自动生成的事件处理程序。
如何使用MVVM模式以正确的方式执行此操作?
答案 0 :(得分:2)
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
xmlns:cmd="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.Extras"
<ListBox Name="ProgamsList" ItemsSource="{Binding ProgramsList}" HorizontalAlignment="Stretch" FontFamily="Portable User Interface" >
<i:Interaction.Triggers>
<i:EventTrigger EventName="Loaded">
<cmd:EventToCommand Command="{Binding LoadedCommand}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</ListBox>
public RelayCommand LoadedCommand
{
get;
private set;
}
/// <summary>
/// Initializes a new instance of the SplashScreenViewModel class.
/// </summary>
public SplashScreenViewModel()
{
LoadedCommand = new RelayCommand(toDoSomehing);
}
private void toDoSomething(){
}
答案 1 :(得分:1)
您可以使用命令从ViewModel公开您的逻辑,然后使用行为,例如:http://metroeventtocommand.codeplex.com/
如果这不符合您的需求,您可以随时使用事件处理程序并从那里调用命令。