Windows 窗体面板边框的背景色
有什么方法可以更改面板或类似控件边框的 BackColor
吗?
当我将鼠标悬停在用户控件上时,我试图“突出显示”用户控件。
Is there any way to change the BackColor
of the border of a panel or similar control?
I am trying to "highlight" the user control when I hover the mouse over the user control.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个简单的类,它用边框突出显示表单上的控件:
然后,在表单中设置所有内容以使用它:
然后,在构造函数中,只需创建荧光笔:
Here's a simple class that highlights controls on the form with a border:
Then, in your form, set everything to use it:
Then, in the constructor, just create the highlighter:
您可以使用 MouseEnter / MouseLeave 事件来执行此操作。
You can use the MouseEnter / MouseLeave events to do this.