I am looking to change the background form in visual studio express 2010 to just a image. Anyone have any idea how to do this? I looked around but there wasn't to much I could find. Maybe I am searching for the wrong thing? What it looks like >> What I want it to look like >>
Just click on the form, go to properties, locate the setting and set "FormBorderStyle" to "None" Or by code Double click the form, that will create an automated event "Form1_Load" and write there: this.FormBorderStyle = Windows.Forms.FormBorderStyle.None; Code (markup): Result: