WinForm实现自定义右下角提示效果的方法
程序员文章站
2023-01-10 16:46:39
本文实例讲述了winform实现自定义右下角提示效果的方法。分享给大家供大家参考。具体实现方法如下:
using system;
using system.co...
本文实例讲述了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#程序设计有所帮助。
推荐阅读
-
Android ImageButton自定义按钮的按下效果的代码实现方法分享
-
WinForm实现仿视频播放器左下角滚动新闻效果的方法
-
WinForm实现自定义右下角提示效果的方法
-
利用PPT自定义动画中的触发器实现点击图片标注提示效果
-
Android ImageButton自定义按钮的按下效果的代码实现方法分享
-
JS实现仿中关村论坛评分后弹出提示效果的方法_javascript技巧
-
谈谈用jQuery实现自定义多选下拉框效果的方法
-
JS实现仿中关村论坛评分后弹出提示效果的方法_javascript技巧
-
关于C#winform如何实现右下角弹出窗口结果的方法分享
-
iOS自定义提示弹出框实现类似UIAlertView的效果