[Winform]无边框窗口悬浮右下角并可以拖拽移动
摘要
简单实现了一个这样的功能,程序启动时,窗口悬固定在右下角,并可以通过鼠标拖拽移动。
核心代码块
无边框窗口并不出现在任务栏
//无边框 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; //不出现在任务栏 this.ShowInTaskbar = false;
置顶
this.TopMost = true;
拖拽移动无边框窗口
//全局窗口坐标 private Point _frmPoint; public MainFrm() { InitializeComponent(); this.TopMost = true; _frmPoint = new Point(); } private void MainFrm_Load(object sender, EventArgs e) { this.MouseDown += MainFrm_MouseDown; this.MouseMove += MainFrm_MouseMove; } void MainFrm_MouseMove(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { Point myPosittion = MousePosition; myPosittion.Offset(-_frmPoint.X, -_frmPoint.Y); Location = myPosittion; } } void MainFrm_MouseDown(object sender, MouseEventArgs e) { _frmPoint.X = e.X; _frmPoint.Y = e.Y; }
可实现类似杀毒软件悬浮的窗口。
-
博客地址:http://www.cnblogs.com/wolf-sun/
博客版权:如果文中有不妥或者错误的地方还望高手的你指出,以免误人子弟。如果觉得本文对你有所帮助不如【推荐】一下!如果你有更好的建议,不如留言一起讨论,共同进步! 再次感谢您耐心的读完本篇文章。