我想测试一些东西,所以我用一个按钮和一个列表框构建了一个小的视图和视图模型。当我单击按钮时,我运行 RunCommand,如下面的代码所示。我不明白为什么 Dispatcher 不触发我希望它运行的操作。
这是视图模型代码:
public class ViewModel
{
private ObservableCollection<string> _items = new ObservableCollection<string>();
private ICommand _runCommand;
public ICommand RunCommand { get { return _runCommand ?? (_runCommand = new ActionCommand(RunCommandAction)); } }
private void RunCommandAction()
{
Task.Factory.StartNew(() =>
{
if (Thread.CurrentThread == EnvironmentData.UIThread)
_items.Add("Eldad");
else
Dispatcher.CurrentDispatcher.BeginInvoke(new Action(() => _items.Add("Eldad")));
});
}
public IEnumerable<string> Items
{
get { return _items; }
}
public ViewModel()
{
_items.Add("Shahar");
}
}
任何想法都会很棒
谢谢