C# Winforms 面板与 TabControl 具有相同的样式(阴影)?
我希望面板有某种像 TabControl
那样的阴影,这可能吗?
I want a panel to have some sort of dropshadow like the TabControl
has, is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
BorderStyle = Fix3D
看看本例中的阴影:
http://www.onteorasoftware.com /downloads/panelwithshadow.zip
最后,自定义面板可能类似于(在 VB 中):
BorderStyle = Fixed3D
take a look for the shadow in this example:
http://www.onteorasoftware.com/downloads/panelwithshadow.zip
Finally, the custom panel could be like (in VB):
是的,在面板的绘制事件中,使用如下内容:
yes, in the paint event of your panel, use something like this: