vote up 2 vote down star

How do I create windows with irregular shapes using WinForms and C#?

flag

69% accept rate
What is your definition of irregular? – adamantium Aug 25 at 7:53
I'm guessing without the regular WinForm look with the titlebar, borders, etc.? – Svish Aug 25 at 7:54
no irregular windows like some windows media player skins that we have seen , get the point not rectangular or rounded edges. – King Aug 25 at 7:57
this should be closed because is a dupe as Nifle pointed. – yeyeyerman Aug 25 at 8:01

2 Answers

vote up 5 vote down check

There are a few different ways to achieve this. One is use use TransparencyKey (as in the post pointed out by Nifle). Another one is to assign a Region object to the Region property of the form:

System.Drawing.Drawing2D.GraphicsPath path = new System.Drawing.Drawing2D.GraphicsPath();
path.AddPolygon(new[]
{
    new Point(20, 20),
    new Point(40, 10),
    new Point(180, 70),
    new Point(160, 260),
    new Point(80, 140)
});
path.AddEllipse(40, 40, 300, 300);
this.Region = new Region(path);

Note that the coordinates refer to the window, not the client area. Also note how overlapping figures in the GraphicsPath object "invert" each other by default (this can be prevented by setting path.FillMode = FillMode.Winding).

link|flag
vote up 4 vote down

Have a look at this question.
http://stackoverflow.com/questions/176720/irregular-shaped-windows-form-c

link|flag
thats just virtual, transparent images as backgrounds.... no i mean actually irregular windows – King Aug 25 at 8:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.