C# 在 Windows 7 ThumbnailToolBarButton 的单击事件中将表单置于前面
我制作了一个 ThumbnailToolBarButton,我想在单击该按钮时将表单置于前面。我已经尝试过:
this.TopMost = true;
this.Focus();
this.BringToFront();
this.TopMost = false;
在按钮单击事件中,但出现了表单,当我将鼠标从缩略图上移开时,表单消失了。如何使表单保留在 topmost = false 的前面?
I've made an ThumbnailToolBarButton and I want to bring the form to front whwn i click the button. I`ve tried this:
this.TopMost = true;
this.Focus();
this.BringToFront();
this.TopMost = false;
in the button click event but the form appear and when i`ve move the mouse away from the thumbnail the form disappear. How can i make the form remain in front with topmost = false?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
}
}