C#?重寫(xiě)Notification提示窗口的示例代碼
更新時(shí)間:2022年04月17日 10:21:49 作者:huang714
本文主要介紹了C#?重寫(xiě)Notification提示窗口的示例代碼,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
這個(gè)窗口是右下角提示小窗口,主要用于提示。

private void btnStartNotification_Click(object sender, EventArgs e)
{
Bz.Controls.BzNotification notification = new Bz.Controls.BzNotification();
notification.ShowAlert("啟動(dòng)成功", Bz.Controls.BzNotification.enumType.Success);
}public partial class BzNotification : Form
{
public static int Count = 0;
System.Windows.Forms.Timer timer = new Timer();
private int x, y;
public event Action OnNotificationClosed;
private bool isClosed = false;
public BzNotification()
{
InitializeComponent();
timer.Enabled = true;
timer.Tick += Timer_Tick;
}
private void Timer_Tick(object sender, EventArgs e)
{
switch (action)
{
case enmAction.wait:
timer.Interval = 5000;
action = enmAction.close;
break;
case enmAction.start:
timer.Interval = 1;
this.Opacity += 0.1;
if (this.x < this.Location.X)
{
this.Left--;
}
else
{
if (this.Opacity == 1.0)
{
action = enmAction.wait;
}
}
break;
case enmAction.close:
timer.Interval = 1;
this.Opacity -= 0.1;
this.Left -= 3;
if (base.Opacity == 0.0 && isClosed==false)
{
isClosed = true;
base.Close();
}
break;
default:
break;
}
}
public enum enmAction
{
wait,
start,
close
}
public enum enumType
{
Success,
Warning,
Error,
Info
}
private enmAction action;
public void ShowAlert(string msg, enumType type)
{
this.Opacity = 0.0;
this.StartPosition = FormStartPosition.Manual;
this.x = Screen.PrimaryScreen.WorkingArea.Width - this.Width + 15;
this.y = Screen.PrimaryScreen.WorkingArea.Height - this.Height - this.Height*Count-5*Count;
this.Location = new Point(this.x, this.y);
this.x = Screen.PrimaryScreen.WorkingArea.Width - base.Width - 5;
switch (type)
{
case enumType.Success:
picLogo.Image = Properties.Resources.success_icon;
this.BackColor = Color.SeaGreen;
break;
case enumType.Error:
picLogo.Image = Properties.Resources.error_info;
this.BackColor = Color.DarkRed;
break;
case enumType.Info:
picLogo.Image = Properties.Resources.info_icon;
this.BackColor = Color.RoyalBlue;
break;
case enumType.Warning:
picLogo.Image = Properties.Resources.alert_icon;
this.BackColor = Color.DarkOrange;
break;
}
lblMessage.Text = msg;
this.Show();
this.action = enmAction.start;
Count++;
timer.Interval = 1;
}
private void picClose_Click(object sender, EventArgs e)
{
timer.Interval = 1;
action = enmAction.close;
if (Count > 0)
Count--;
}
protected override void OnClosed(EventArgs e)
{
base.OnClosed(e);
if (OnNotificationClosed != null)
{
OnNotificationClosed();
}
if (Count > 0)
Count--;
}
}到此這篇關(guān)于C# 重寫(xiě)Notification提示窗口的示例代碼的文章就介紹到這了,更多相關(guān)C# 重寫(xiě)Notification提示窗口內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:
相關(guān)文章
C#實(shí)例化和靜態(tài)類(lèi)對(duì)象調(diào)用對(duì)比
這篇文章主要介紹了C#實(shí)例化和靜態(tài)類(lèi)對(duì)象調(diào)用對(duì)比,什么時(shí)候用實(shí)例化對(duì)象,什么時(shí)候用靜態(tài)類(lèi)對(duì)象,內(nèi)存和生命周期又是如何,框架本身的回收機(jī)制是什么,下文詳細(xì)解說(shuō)需要的小伙伴可以參考一下2022-04-04
C#使用opencv截取旋轉(zhuǎn)矩形區(qū)域圖像的實(shí)現(xiàn)示例
這篇文章主要介紹了C#使用opencv截取旋轉(zhuǎn)矩形區(qū)域圖像,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2021-03-03

