Form with Rounded Borders in C#? [duplicate]
问题 This question already has answers here : How to Draw a Rounded Rectangle with WinForms (.NET)? (6 answers) Closed last year . I am using this code to make the form have no border style: this.FormBorderStyle = FormBorderStyle.None; I need to make rounded edges on the form. Is there an easy way? How do I do it? 回答1: Take a look at this: http://msdn.microsoft.com/en-us/library/system.windows.forms.control.region.aspx The Form class inherits from the Control class, so try doing the same sample