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.
我想制作一个没有圆角的窗体,如下图所示。是否有任何 Windows API 函数或任何其他方法来制作它?
我不想使用IMAGESORFormBorderStyle = none属性。
IMAGES
FormBorderStyle = none
去除圆角时,应正确应用 WINDOWS 主题颜色。它不是 WINDOWS 经典模式 WINDOWS 窗体
如果您只想消除圆角,您可以设置Region表单的属性:
Region
this.Region = new Region(new Rectangle(0, 0, Width, Height));