使用MVVM模式时,在Loaded事件中设置与ComBox.SelectedItem关联的属性时不会触发ComBox的SelectionChanged事件。
如何使页面加载时触发这一事件呢?可调用外部线程操作, 方法有二,1是使用timer类,2是使用Thread类。伪代码如下:
private void PageLoad(object o)
{
_thisWindow = o as Window;
Thread t = new Thread(delegate()
{
_thisWindow.Dispatcher.Invoke(new Action(delegate()
{
PageLoad();
}));
});
t.Start();
}
private void PageLoad()
{
this.SeletcedItem = "ok";
//do some thing...
{
_thisWindow = o as Window;
Thread t = new Thread(delegate()
{
_thisWindow.Dispatcher.Invoke(new Action(delegate()
{
PageLoad();
}));
});
t.Start();
}
private void PageLoad()
{
this.SeletcedItem = "ok";
//do some thing...
}
另外,如果外部线程调用某个类,当这个类触发某事件时,事件处理方法中一定要加上类似的语句:
Thread t = new Thread(delegate()
{
_thisWindow.Dispatcher.Invoke(new Action(delegate()
{
this.SeletcedItem = "ok";
}));
});
{
_thisWindow.Dispatcher.Invoke(new Action(delegate()
{
this.SeletcedItem = "ok";
}));
});
也就是Dispatcher.Invoke()方法,否则ComBox的SelectionChanged事件也无法触发。
找到这些经验,花了不少代价啊!!!
补充:
我找到出现开关所述问题的原因所在了,如果直接xaml中设置Combox.SelectionChanged="SelectionChanged",那么在Loaded时,SelectionChanged事件会正常触发。
但我用的是Triggers:
<i:Interaction.Triggers>
<i:EventTrigger EventName="SelectionChanged">
<i:InvokeCommandAction Command="{Binding ProvinceSelectionChangedCommand}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
这样在页面加载的时候会没有用。我猜是因为loaded时,Triggers还没生效,也就是说要等页面加载完毕Triggers才会被实例化。
我以前就有这种猜测,果然不出所料啊!这也是mvvm的一个弊端吧!