Çalışma Anında Button ve Label Oluşturmak
Bu örneğimizde çalışma anında button ve label oluşturacağız. Çalışma anında istediğiniz kadar Button ve Label oluşturabilirsiniz Aşağıdaki şekili inceleyin.
Şekil 1
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Button button1=new Button();
Label label1=new Label();
this.Controls.Add(button1);
this.Controls.Add(label1);
button1.Text = "Çalışma Anında Button Ekleme";
button1.Size = new System.Drawing.Size(100, 60);
label1.Text = "Çalışma Anında Label Oluşturma";
label1.Width = 200;
label1.Left = 100;
}
}
}
//Bir sonraki makalede görüşmek üzere...Bahadır