using System.Windows.Forms; using System.Drawing; class Program : Form { PictureBox kep; Program() { kep = new PictureBox(); kep.Image = Image.FromFile("kep.png"); kep.Location = new Point(100, 100); kep.Size = new Size(100, 100); Controls.Add(kep); Width = 800; Height = 600; } static void Main() { Application.Run(new Program()); } }