首页 > 编程 > C# > 正文

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

2019-10-29 21:39:13
字体:
来源:转载
供稿:网友

这篇文章主要介绍了WinForm实现自定义右下角提示效果的方法,涉及WinForm自定义提示效果的实现方法,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了WinForm实现自定义右下角提示效果的方法。分享给大家供大家参考。具体实现方法如下:
 

  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. namespace IcoFlickerApp 
  10. public partial class FrmMain : Form 
  11. public FrmMain() 
  12. InitializeComponent(); 
  13. Rectangle rectangle = Screen.AllScreens[0].WorkingArea; 
  14. this.StartPosition = FormStartPosition.Manual; 
  15. this.Location = new Point(rectangle.Width - this.Width, rectangle.Height); 
  16. this.TopMost = true
  17. System.Threading.Thread thread = new System.Threading.Thread(() => 
  18. while (this.Top >= rectangle.Height - this.Height) 
  19. this.Invoke(new MethodInvoker(delegate 
  20. this.Top = this.Top - 1; 
  21. System.Threading.Thread.Sleep(1); 
  22. Application.DoEvents(); 
  23. })); 
  24. }); 
  25. thread.Start(); 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表