using System; using System.Drawing; using System.Windows.Forms;
class Program { [STAThread] static void Main() { Application.EnableVisualStyles(); Application.Run(new MyForm()); } }
class MyForm : Form { Font font; public MyForm() { font = new Font("Times New Roman", 15, FontStyle.Regular); Controls.Add(new Label() { Text = "Dragon Ball Z", ForeColor = Color.Red, Font = font, AutoSize = true }); } }