using System; using System.Drawing; using System.Windows.Forms; public class Form1 : Form { public Form1() { Image kep = Image.FromFile("kep.jpg"); this.BackgroundImage = kep; } static public void Main() { Application.Run(new Form1()); } }