this.BackgroundImage = //Image
this.FormBorderStyle = FormBorderStyle.None;
this.Width = this.BackgroundImage.Width;
this.Height = this.BackgroundImage.Height;
this.TransparencyKey = Color.FromArgb(0, 255, 0); //Contrast Color
Это позволяет создавать форму на основе изображения и использовать индекс прозрачности, чтобы создать вид, будто форма не прямоугольная.