ComboBox’ta Seçili Item Indeksine Göre PictureBox’ta Resim Gösterimi

 

Merhaba arkadaşlar bu makalemizde ComboBox’ta seçilen itemin indeksine göre PictureBox’ta resim göstereceğiz. Formumuza 1 adet Combobox ve PictureBox ekleyeceğiz. Bu örnekte images klasöründeki resimleri göstereceğiz.

 


 

 

 

 

 

 

 

 

 

 

 

 

Şekil 1


 


 

 

 

 

 

 

 

 

 

 

 

 

Şekil 2

 


 

 

 

 

 

 

 

 

 

 

 

 

Şekil 3


 

Form1.cs


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_picturebox

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

 

        private void Form1_Load(object sender, EventArgs e)

        {

            cmbImages.Items.Add("Audrey Hepburn");

            cmbImages.Items.Add("Betty White");

            cmbImages.Items.Add("Sidney Poitier");

 

            pictureBox1.SizeMode= PictureBoxSizeMode.StretchImage;

 

        }

 

        private void cmbImages_SelectedIndexChanged(object sender, EventArgs e)

        {

            int select = cmbImages.SelectedIndex;

 

            switch (select)

            {

                case 0:

                    pictureBox1.Image = Image.FromFile("..\\..\\images\\thebeautyofawoman.jpg");

                    break;

                case 1:

                    pictureBox1.Image = Image.FromFile("..\\..\\images\\butterfly.jpg");

                    break;

                case 2:

                    pictureBox1.Image = Image.FromFile("..\\..\\images\\sidney.jpg");

                    break;

 

            }

        }

    }

}      

 

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...