這篇文章主要介紹了WinForm實現自定義右下角提示效果的方法,涉及WinForm自定義提示效果的實現方法,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了WinForm實現自定義右下角提示效果的方法。分享給大家供大家參考。具體實現方法如下:
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace IcoFlickerApp
- {
- public partial class FrmMain : Form
- {
- public FrmMain()
- {
- InitializeComponent();
- Rectangle rectangle = Screen.AllScreens[0].WorkingArea;
- this.StartPosition = FormStartPosition.Manual;
- this.Location = new Point(rectangle.Width - this.Width, rectangle.Height);
- this.TopMost = true;
- System.Threading.Thread thread = new System.Threading.Thread(() =>
- {
- while (this.Top >= rectangle.Height - this.Height)
- {
- this.Invoke(new MethodInvoker(delegate
- {
- this.Top = this.Top - 1;
- System.Threading.Thread.Sleep(1);
- Application.DoEvents();
- }));
- }
- });
- thread.Start();
- }
- }
- }
希望本文所述對大家的C#程序設計有所幫助。
新聞熱點
疑難解答