c# winForm 等待窗體的實現

来源:http://www.cnblogs.com/lijuanfei/archive/2016/11/19/6080594.html
-Advertisement-
Play Games

最近在做一個項目,需要用到等待窗體,在DevExpress下麵有SplashScreen控制項可以使用,同時也有ProgressIndicator控制項能用,但是如果沒有用Dev開發的話,我們就需要自定義一個等待窗體了。 首先,把截圖放上來: 實現的功能比較簡單,就是在程式處理 一些耗時比較多的代碼時, ...


最近在做一個項目,需要用到等待窗體,在DevExpress下麵有SplashScreen控制項可以使用,同時也有ProgressIndicator控制項能用,但是如果沒有用Dev開發的話,我們就需要自定義一個等待窗體了。

 

首先,把截圖放上來:

實現的功能比較簡單,就是在程式處理 一些耗時比較多的代碼時,將Loading窗體展示給用戶,併在後臺進行執行。

 

這個程式,參考了 網名為 “八哥” 的一個程式,當時我在群裡面的時候,感謝他的熱情幫助。

現將我的代碼貼出來吧,裡面用的了委托的概念。大家如果不懂的話,可以百度一下,這裡給出幾個鏈接:

http://blog.csdn.net/ggz631047367/article/details/44646233

http://www.runoob.com/csharp/csharp-delegate.html

http://blog.csdn.net/sjj2011/article/details/7835200

http://blog.csdn.net/testcs_dn/article/details/37671513

LoadingControl.cs代碼如下:

  1 using System;
  2 using System.Collections.Generic;
  3 using System.ComponentModel;
  4 using System.Data;
  5 using System.Drawing;
  6 using System.Linq;
  7 using System.Text;
  8 using System.Windows.Forms;
  9 using System.Threading;
 10 
 11 namespace ControlToolsLibrary
 12 {
 13     public partial class LoadingControl : Form
 14     {
 15 
 16         public delegate void mydelegate();
 17         public mydelegate eventMethod;
 18         private static LoadingControl pLoading = new LoadingControl();
 19         delegate void SetTextCallback(string title,string caption,string description);
 20         delegate void CloseFormCallback();
 21         public LoadingControl()
 22         {
 23             InitializeComponent();
 24             initLoadintForm();
 25             Thread t = new Thread(new ThreadStart(delegateEventMethod));
 26             t.IsBackground = true;
 27             t.Start();
 28         }
 29 
 30         private void LoadingControl_FormClosing(object sender, FormClosingEventArgs e)
 31         {
 32             if (!this.IsDisposed)
 33             {
 34                 this.Dispose(true);
 35             }
 36         }
 37 
 38         private void initLoadintForm() {
 39             this.ControlBox = false;   // 設置不出現關閉按鈕
 40             this.StartPosition = FormStartPosition.CenterParent;
 41         }
 42 
 43         private void delegateEventMethod()
 44         {
 45             eventMethod();
 46         }
 47 
 48         public static LoadingControl getLoading()
 49         {
 50             if (pLoading.IsDisposed)
 51             {
 52                 pLoading = new LoadingControl();
 53                 return pLoading;
 54             }
 55             else
 56             {
 57                 return pLoading;
 58             }
 59         }
 60 
 61         //這種方法演示如何線上程安全的模式下調用Windows窗體上的控制項。  
 62         /// <summary>
 63         /// 設置Loading 窗體的 標題title,標簽 caption 和描述 description
 64         /// </summary>
 65         /// <param name="title">視窗的標題[為空時,取預設值]</param>
 66         /// <param name="caption">標簽(例如:please wait)[為空時,取預設值]</param>
 67         /// <param name="description">描述(例如:正在載入資源...)[為空時,取預設值]</param>
 68         public void SetCaptionAndDescription(string title,string caption, string description)
 69         {
 70             if (this.InvokeRequired&&LoadingControl.lbl_caption.InvokeRequired && LoadingControl.lbl_description.InvokeRequired)
 71             {
 72                 SetTextCallback d = new SetTextCallback(SetCaptionAndDescription);
 73                 this.Invoke(d, new object[] { title,caption, description });
 74             }
 75             else
 76             {
 77                 if (!title.Equals("")) {
 78                     this.Text = title;
 79                 }
 80                 if (!caption.Equals(""))
 81                 {
 82                     LoadingControl.lbl_caption.Text = caption;
 83                 }
 84                 if (!description.Equals("")) {
 85                     LoadingControl.lbl_description.Text = description;
 86                 }
 87             }
 88         }
 89 
 90         public  void CloseLoadingForm()
 91         {
 92             if (this.InvokeRequired)
 93             {
 94                 CloseFormCallback d = new CloseFormCallback(CloseLoadingForm);
 95                 this.Invoke(d, new object[] {  });
 96             }
 97             else
 98             {
 99                 if (!this.IsDisposed)
100                 {
101                     this.Dispose(true);
102                 }
103             }
104         }
105 
106         public void SetExecuteMethod(mydelegate method)
107         {
108               this.eventMethod += method;
109         }
110 
111 
112     }
113 }
View Code

Form的調用的方法如下:

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.0點擊VMware快捷方式,右鍵打開文件所在位置 -> 雙擊vmnetcfg.exe -> VMnet1 host-only ->修改subnet ip 設置網段:192.168.1.0 子網掩碼:255.255.255.0 -> apply -> ok 回到windows --> 打開網路和共 ...
  • 安裝clamav 之前還需要安裝zlib 要不然安裝過程中會報錯的.tar -zxvf zlib-1.2.3.tar.gzcd zlib-1.2.3./configuremakemake install (zlib 編譯安裝)因為我用源碼包安裝,需要手動創建clamav 用戶groupadd cla ...
  • [1]準備工作 [2]多表更新 [3]兩步更新 [4]連接 [5]無限級表 ...
  • Exercise 1:Linear Regression 實現一個線性回歸 關於如何實現一個線性回歸,請參考:http://www.cnblogs.com/hapjin/p/6079012.html Exercise 2:Logistic Regression 實現一個邏輯回歸 問題描述:用邏輯回歸 ...
  • 在做一個用到ucGUI的項目的時候要用到不定的漢字和英文字元,但是ucGUI本身又不支持讀取晶元外部flash的字型檔來顯示,於是查了下資料,如下: http://www.cnblogs.com/hiker-blogs/archive/2013/01/04/2843538.html 站在巨人的肩膀上, ...
  • 3.1上傳hadoop安裝包 3.2解壓hadoop安裝包 mkdir /cloud #解壓到/cloud/目錄下 tar -zxvf hadoop-2.2.0.tar.gz -C /cloud/ 3.3修改配置文件(5個) 第一個:hadoop-env.sh #在27行修改 export JAVA ...
  • 啟動時按任意鍵暫停啟動 按e進入編輯模式 將游標移動到Linux16的行尾,添加rd.break 按Ctrl+X 啟動 mount –o remount,rw /sysroot chroot /sysroot passwd 設置新密碼 touch /.autorelabel 破解root密碼(cen ...
  • 第一步:在資料庫創建一個存放賬號密碼的表單 第二步:創建一個登入項目 拆分成三層: CS層: BLL層: DAL層: Common層: Web.config: ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...