Primer koji se radi na času
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
Label label = new Label();
Button button = new Button();
TextBox txtbox = new TextBox();
private void Form1_Load(object sender, EventArgs e)
{
label.Text = "Primer teksta u labeli!";
label.ForeColor = Color.Yellow;
this.Controls.Add(label);
label.AutoSize = true;
label.BackColor = Color.Black;
label.Location = new Point(100, 100);
label.Font = new Font(new FontFamily("Times New Roman"), 30, FontStyle.Bold);
button.Text = "Dugme";
button.Location = new Point(400, 200);
this.Controls.Add(button);
txtbox.Location = new Point(100, 200);
this.Controls.Add(txtbox);
}
}