30 Kasım 2016 Çarşamba

C# - Buttona Tıklayınca TextBoxlar'dan Labellara Bilgi Aktarımı


namespace Örnek3
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            label9.Text = textBox1.Text;
            label10.Text = textBox2.Text;
            label11.Text = comboBox1.Text;
            label12.Text = textBox3.Text;
        }
    }
}

Hiç yorum yok:

Yorum Gönder