WinForm实现自定义右下角提示效果的方法

2019-12-26 13:04:19王旭

易采站长站为您分析WinForm实现自定义右下角提示效果的方法,涉及WinForm自定义提示效果的实现方法,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了WinForm实现自定义右下角提示效果的方法。。具体实现方法如下:
 

  1. using System;  using System.Collections.Generic; 
  2. using System.ComponentModel;  using System.Data; 
  3. using System.Drawing;  using System.Linq; 
  4. using System.Text;  using System.Windows.Forms; 
  5. namespace IcoFlickerApp  { 
  6. public partial class FrmMain : Form  { 
  7. public FrmMain()  { 
  8. InitializeComponent();  Rectangle rectangle = Screen.AllScreens[0].WorkingArea; 
  9. this.StartPosition = FormStartPosition.Manual;  this.Location = new Point(rectangle.Width - this.Width, rectangle.Height); 
  10. this.TopMost = true;  System.Threading.Thread thread = new System.Threading.Thread(() => 
  11. {  while (this.Top >= rectangle.Height - this.Height) 
  12. {  this.Invoke(new MethodInvoker(delegate 
  13. {  this.Top = this.Top - 1; 
  14. System.Threading.Thread.Sleep(1);  Application.DoEvents(); 
  15. }));  } 
  16. });  thread.Start(); 
  17. }  } 

希望本文所述对大家的C#程序设计有所帮助。