Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一种在自定义控件上绘制圆形凸起和凹陷角边缘的方法。目前,我正在使用 ControlPaint.DrawBorder3D,但当然角落是方形的,看起来很糟糕。如何才能做到这一点?此外,该项目不允许使用任何 PInvoke 调用。
您必须通过一系列弧线和线条手动绘制它。最简单的方法是将它们添加到Path并使用Graphics.DrawPath (...)
在 MSDN 论坛中查看此帖子