Combobox Databinding Olayı

 

Merhaba arkadaşlar bu makalemizde combobox’ımızı veritabanına bağlayacağız. Combobox’ta seçili satır indeksini ve seçili value değerini label’de göstereceğiz.


Screenshot

 



 

 

 

 

 

 

 

Şekil 1

 



 

 

 

 

Şekil 2

 

Form1.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Data.SqlClient;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;

 

namespace combobox_databinding

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

 

        private void Form1_Load(object sender, EventArgs e)

        {

            bindData();

        }

 

        private void bindData()

        {

 

 

            SqlConnection con = new SqlConnection("Data Source=(LocalDB)\\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\\App_Data\\kategori.mdf;Integrated Security=True;Connect Timeout=30");

            {

                con.Open();

                SqlCommand cmd = new SqlCommand("select * from [dbo].[Table]", con);

                SqlDataAdapter da = new SqlDataAdapter(cmd);

                DataTable dt = new DataTable();

                da.Fill(dt);

 

                // displaymember olarak yazar sutunundaki isimlerini gosteriyoruz.

                cbox.DisplayMember = "Yazar";

 

                // valueMember değeri olarak id numarasina gore kitap sutunundaki

                // degerleri aliyoruz.

                cbox.ValueMember = "Kitap";

                cbox.DataSource = dt;

               

                con.Close();

               

            }

        }

 

        private void cbox_SelectedIndexChanged(object sender, EventArgs e)

        {

            // label e combox taki secili indeks ve secili valuemember i gosteriyoruz.

            lblSonuc.Text = cbox.SelectedIndex.ToString() + " " + cbox.SelectedValue.ToString();

         

        }

    }

}

 

Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...