using System.Windows.Forms; using System.Drawing; class Program : Form { Label cimke1; Font font1; Program() { Width = 800; Height = 600; Show(); cimke1 = new Label(); font1 = new Font("Liberation Serif", 28, FontStyle.Regular); cimke1.Top = 100; cimke1.Left = 100; cimke1.Text = "Teszt"; cimke1.Font = font1; cimke1.Height = 50; Controls.Add(cimke1); } static void Main() { Application.Run(new Program()); } }