我的Windows窗体中有此功能,现在我正在尝试将我的工作转移到WPF,
转移后,我注意到WPF不支持InvokeRequired
和BeginInvoke
。我正在寻找将我的函数转换为WPF的正确方法:
delegate void DisplayInvoker(string text, MessageType type);
private void DisplayinRichbox(string text, MessageType type = MessageType.Normal)
{
if (this.InvokeRequired) // not support by WPF
{
this.BeginInvoke(new DisplayInvoker(DisplayinRichbox), text, type); // Not support by WPF
return;
}
txt_Log.AppendText(String.Format("[{0}] {1}{2}\r\n",
DateTime.Now, type == MessageType.Incoming ? "<< " : type == MessageType.Outgoing ? ">> " : "", text));
txt_Log.ScrollToCaret(); // not support by WPF
}
这是我主要课程中的Thread Loop:
while (bWaiting == true)
{
//System.Windows.Forms.Application.DoEvents(); // i comment it because i cant find equivalent in WPF
System.Threading.Thread.Sleep(15);
}
答案 0 :(得分:3)
WPF中的等效项是Dispatcher.CheckAccess和Dispatcher.BeginInvoke:
if (!this.Dispatcher.CheckAccess())
{
this.Dispatcher.BeginInvoke(new Action(() => DisplayInRichbox(text, type)));
return;
}
编辑:
您的RichTextBox
永远不会更新的原因是您阻止了UI线程:
while (bWaiting == true)
{
//System.Windows.Forms.Application.DoEvents(); // i comment it because i cant find equivalent in WPF
System.Threading.Thread.Sleep(15);
}
这样可以防止在UI中更新任何内容,因为您正在阻止它,并且永远不会提供正确更新的方法。在旧的Win Forms代码中,您调用DoEvents()
来处理消息(但由于许多原因,这是一个非常糟糕的主意)。没有这个电话,这将无法正常工作。
您应该尝试避免在UI线程中阻塞和循环 - 而是在后台线程中完成工作,并让UI线程正常运行。 BackgroundWorker
使得这一点变得更加简单,就像TPL中的许多选项一样。
答案 1 :(得分:0)
Reed Copsey给你完整的答案。但是,我只想指出实际上你在WPF中不需要这个。通常,当您通过INotifyPropertyChanged
和xaml数据绑定使用MVVM模式时,它会自动处理。在同步集合的情况下,您可以使用多线程可观察集合。
这是我自己使用的源代码。
public class MultiThreadedObservableCollection<T> : ObservableCollection<T> {
public override event NotifyCollectionChangedEventHandler CollectionChanged;
public MultiThreadedObservableCollection() { }
public MultiThreadedObservableCollection(IEnumerable<T> source) : base(source) { }
public MultiThreadedObservableCollection(List<T> source) : base(source) { }
protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e) {
var handle = CollectionChanged;
if (CollectionChanged == null)
return;
foreach (NotifyCollectionChangedEventHandler handler in handle.GetInvocationList()) {
var dispatcherObj = handler.Target as DispatcherObject;
if (dispatcherObj != null) {
var dispatcher = dispatcherObj.Dispatcher;
if (dispatcher != null && !dispatcher.CheckAccess()) {
dispatcher.BeginInvoke(
(Action)(() => handler.Invoke(
this,
new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset))
), DispatcherPriority.DataBind);
continue;
}
}
handler.Invoke(this, e);
}
}
}
(它来自这里,stackoverflow.com,但现在找不到来源)
然后,您只需定义ViewModel并开始更改值。这是开发WPF应用程序的最合适,最快捷的方法。