中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中怎么實現倒計時關閉提示框功能

發布時間:2021-08-07 14:52:22 來源:億速云 閱讀:128 作者:Leah 欄目:編程語言

C#中怎么實現倒計時關閉提示框功能,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

其核心方法在 timer(TimerCallBack,Object,int32,int32) TimerCallBack 是一個委托 ,代表要執行的方法,其用途可以用在各個定時去調用方法的場景,而且可以設置窗體的FormBorderStyle的屬性為None,設置窗體邊框和標題欄外觀不顯示.

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace NewuView.Mix{  public partial class AutoCloseMessageBox : Form  {    public AutoCloseMessageBox()    {      InitializeComponent();    }    public void getMassage(string text)    {      label1.Text = text;    }    public void GetText(string caption)    {      this.Text = caption;    }    System.Threading.Timer _timeoutTimer;    string _caption;    AutoCloseMessageBox(string text, string caption, int timeout)    {      _caption = caption;      _timeoutTimer = new System.Threading.Timer(OnTimerElapsed,        null, timeout, System.Threading.Timeout.Infinite);      AutoCloseMessageBox m_MassageBox = new AutoCloseMessageBox();      m_MassageBox.getMassage(text);      m_MassageBox.GetText(caption);      m_MassageBox.ShowDialog();    public static void Show(string text, string caption, int timeout)    {      new AutoCloseMessageBox(text, caption, timeout);    }    void OnTimerElapsed(object state)    {      IntPtr mbWnd = FindWindow(null, _caption);      if (mbWnd != IntPtr.Zero)        SendMessage(mbWnd, WM_CLOSE, IntPtr.Zero, IntPtr.Zero);      _timeoutTimer.Dispose();    }    const int WM_CLOSE = 0x0010;    [System.Runtime.InteropServices.DllImport("user32.dll", SetLastError = true)]    static extern IntPtr FindWindow(string lpClassName, string lpWindowName);    [System.Runtime.InteropServices.DllImport("user32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto)]    static extern IntPtr SendMessage(IntPtr hWnd, UInt32 Msg, IntPtr wParam, IntPtr lParam);  }}

調用時直接使用類名.show(text,captiom,timeout) 直接調用即可

下邊是當時的項目使用場景的解決辦法

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace NewuView.Mix{  public partial class ErrorForm : Form  {    public ErrorForm()    {      InitializeComponent();    }    private void BarcodeErrorForm_Load(object sender, EventArgs e)    {      this.ShowInTaskbar = false;    }    public void Clear()    {      if (this.InvokeRequired)      {        this.BeginInvoke(new MethodInvoker(Clear));      }      else      {        this.richTextBox1.Clear();      }    }    public void SetMsg(string msg)    {      if (this.InvokeRequired)      {        this.BeginInvoke(new Action<string>(SetMsg), msg);      }      else      {        this.richTextBox1.AppendText(msg + Environment.NewLine);      }    }    public Point Point1 { get; set; }    public void ShowForm()    {      if (this.InvokeRequired)      {        this.Invoke(new MethodInvoker(ShowForm));      }      else      {        this.Location = Point1;        this.BringToFront();        this.Visible = true;      }    }    public void HideForm()    {      if (this.InvokeRequired)      {        this.Invoke(new MethodInvoker(HideForm));      }      else      {        this.richTextBox1.Clear();        this.Visible = false;      }    }  }}

該窗體可以用于實時監控某一個狀態時 而彈出的提示框 并根據狀態改變而隱藏

使用時,new一個該errorForm

在該窗體有一個RichTextBox,用來顯示提示信息,使用SetMsg,設置要顯示的信息

需要彈出時,實例調用Show()方法 實際就是講該窗體的visible屬性置為true,讓窗體顯示,并且調用Clear方法,清除提示信息

需要隱藏時,實例調用HideForm()方法,將窗體visible屬性設置為false,調用clear方法,清除提示信息

關于C#中怎么實現倒計時關閉提示框功能問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

荔波县| 平武县| 佛冈县| 三明市| 偏关县| 吉林省| 河间市| 宣武区| 望都县| 吉木萨尔县| 贵德县| 巧家县| 荔波县| 玉环县| 达拉特旗| 吉木萨尔县| 彭州市| 内江市| 文成县| 中卫市| 冕宁县| 宁夏| 南宁市| 商南县| 满城县| 鄂托克前旗| 竹山县| 徐闻县| 新野县| 天门市| 嘉荫县| 吉林省| 万荣县| 巍山| 施甸县| 广州市| 黑龙江省| 琼中| 揭西县| 新河县| 海南省|