Has anyone found a way of adding say a circle to their Form?
Printable View
Has anyone found a way of adding say a circle to their Form?
yep, You have to use GDI+ and then use the Region Property of the Form to shape the Form.
Saurabh Nandu
mail[email protected]
http://Learncsharp.cjb.net
You can use the properties editor to add a callback method for the Paint event. Using the arguments passed to that method you can obtain a Graphics object and this graphics object will have a DrawCircle method. The Graphics object is the C# equivalent of a Win32 Device Context. Hope this helps.