- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最近我发现了一种方法,它可以执行调度程序队列中的所有待处理消息,直到指定优先级。我之前已经有这样的代码,但它们使用完全不同的方法。这是他们两个:
PushFrame方式:
/// <summary>
/// Enters the message loop to process all pending messages down to the specified
/// priority. This method returns after all messages have been processed.
/// </summary>
/// <param name="priority">Minimum priority of the messages to process.</param>
public static void DoEvents(
DispatcherPriority priority = DispatcherPriority.Background)
{
DispatcherFrame frame = new DispatcherFrame();
Dispatcher.CurrentDispatcher.BeginInvoke(
priority,
new DispatcherOperationCallback(ExitFrame), frame);
Dispatcher.PushFrame(frame);
}
private static object ExitFrame(object f)
{
((DispatcherFrame) f).Continue = false;
return null;
}
private static Action EmptyDelegate = delegate { };
/// <summary>
/// Processes all pending messages down to the specified priority.
/// This method returns after all messages have been processed.
/// </summary>
/// <param name="priority">Minimum priority of the messages to process.</param>
public static void DoEvents2(
DispatcherPriority priority = DispatcherPriority.Background)
{
Dispatcher.CurrentDispatcher.Invoke(EmptyDelegate, priority);
}
/// <summary>
/// Processes all pending messages down to the specified priority.
/// This method returns after all messages have been processed.
/// </summary>
/// <param name="priority">Minimum priority of the messages to process.</param>
public static void DoEvents2(
DispatcherPriority priority = DispatcherPriority.Background)
{
Dispatcher.CurrentDispatcher.Invoke(new Action(delegate { }), priority);
}
最佳答案
你有点回答了你自己的问题。您选择哪个并不重要,因为两者在后台执行相同的操作。
两者都遇到了这个:
While (dispatcherFrame.Continue)
{
Dispatcher.GetMessage();
Dispatcher.TranslateAndDispatch();
}
关于wpf - DoEvents : Dispatcher. 调用与 PushFrame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25442018/
我遇到了 Dispatcher 对象的 PushFrame 方法。它是方法的简化版本: public void PushFrame(DispatcherFrame frame) { // St
最近我发现了一种方法,它可以执行调度程序队列中的所有待处理消息,直到指定优先级。我之前已经有这样的代码,但它们使用完全不同的方法。这是他们两个: PushFrame方式: /// /// Enter
我有一个非 ui 线程,我需要在该线程上发送消息。 执行此操作的正常方法是在我的线程的线程过程中调用 Dispatcher.Run()。 我想修改它以使其在处理未处理的异常方面更加健壮。 我的第一个剪
我正在使用 PushFrame 来确保我的窗口在执行其他代码之前完成绘制。我的应用程序有一些时间敏感的功能,需要在我继续执行代码之前更新窗口。 所以我正在使用来自 msdn 的示例:http://ms
我正在使用 Dispatcher.PushFrame 来阻止我的代码,同时允许 UI 刷新,直到一个长时间运行的进程完成。只要我对 Dispatcher.PushFrame 的调用来自按钮单击事件,这
我是一名优秀的程序员,十分优秀!