• 在线程中显示一个窗口(多个UI线程)


    多数耗时操作可以异步执行,推荐async/await。

    但和UI相关的部分仅能在UI线程执行,这时UI线程的耗时操作,导致界面卡死,不够友好。

    我们可以创建一个单独的UI线程显示一个正在加载的窗口,可以在窗口显示一些动画之类的。

    如果是WinForms那么很容易做到。

    Application.Run(new LoadingForm());

    WPF没有提供这样简单的方式,官方文档中有示例多窗口、多线程,官方例子 ExceptionHandlingSecondaryUIThread

    经过简化后,十几行代码就可以实现。

     1         private void 单独UI线程_Click(object sender, RoutedEventArgs e)
     2         {
     3             LoadingWindow loadingWindow = null;
     4             var thread = new Thread(() =>
     5             {
     6                 loadingWindow = new LoadingWindow();
     7                 loadingWindow.Show();
     8                 System.Windows.Threading.Dispatcher.Run();
     9             });
    10             thread.SetApartmentState(ApartmentState.STA);
    11             thread.Start();
    12             耗时操作();
    13             loadingWindow.Dispatcher.Invoke(() => loadingWindow.Close());
    14             loadingWindow.Dispatcher.InvokeShutdown();
    15         }

    完整代码在我的 GitHub

  • 相关阅读:
    Easy Install详细参数
    linux.backspace乱码(转)
    RemoteFX
    netsh
    sc.exe
    WinRM和WinRS
    安全配置向导
    使用 Sconfig.cmd 配置服务器核心服务器
    FSMO
    Windows Server 2012之活动目录域服务的卸载
  • 原文地址:https://www.cnblogs.com/noctwolf/p/11216386.html
Copyright © 2020-2023  润新知