在加载窗口期间,我使用以下代码在ViewModel中调用LoadCommand。
<code>
<i:Interaction.Triggers>
<i:EventTrigger EventName="Loaded">
<i:InvokeCommandAction Command="{Binding LoadCommand}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</code>
但我所看到的是Window在LoadCommand fires之前加载。所以我的代码放在我的LoadCommand中
public ICommand LoadCommand
{
get
{
if (_loadCommand == null)
{
_loadCommand = new RelayCommand(
param => this.Load(),
param => this.CanLoad
);
}
return _loadCommand;
}
}
List<Match> matchList;
ObservableCollection<Match> _matchObsCollection;
public ObservableCollection<Match> MatchObsCollection
{
get { return _matchObsCollection; }
set
{
_matchObsCollection = value;
OnPropertyChanged("MatchObsCollection");
}
}
public void Load()
{
matchList = matchBLL.GetMatch();
}
bool CanLoad
{
get { return true; }
}
在我的窗口加载后触发。如果我将我的代码放在我的ViewModel的构造函数中,那么它会在Window加载之前触发。 我想知道如何在MVVM中首先使命令激活并加载Window秒。 提前感谢你。
答案 0 :(得分:1)
问题似乎是在ViewModel实例化并绑定到DataContext之前已加载窗口。解决方案是在View之前实例化ViewModel。
var vm = new MyViewModel();
var view = new MyView();
view.DataContext = vm;
view.Show();
不要使用实例化视图的框架,然后“发现”适用的视图模型,至少在这种情况下不会。