Nasıl Yapılır

C# İle Örnekler #71

c

C# Combobox SelectedItem Kullanımı

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
 
namespace combobox_ornek
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
 
        private void Form1_Load(object sender, EventArgs e)
        {
            comboBox1.Items.Add("C#");
            comboBox1.Items.Add("C++");
            comboBox1.Items.Add("Java");
            comboBox1.Items.Add("Python");
            comboBox1.Items.Add("SQL");
        }
 
        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            label1.Text = "Seçiminiz : " + comboBox1.SelectedItem;
        }
    }
}

 

Yazar Hakkında

Hız Hosting

Yorum Yap