点击datagridview里的一项 如何在combobox中显示

点击datagridview里的一项 怎么在combobox中显示?
如图
点击datagridview里的一项 如何在combobox中显示

响应点击的代码
            textBox_Name.Text = dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString();
            textBox_Location.Text = dataGridView1.Rows[e.RowIndex].Cells[1].Value.ToString();
            comboBox_Panel.Text = dataGridView1.Rows[e.RowIndex].Cells[2].Value.ToString();
            comboBox_WndScr.Text = dataGridView1.Rows[e.RowIndex].Cells[3].Value.ToString();
            comboBox_ComScr.Text = dataGridView1.Rows[e.RowIndex].Cells[4].Value.ToString();
            comboBox_Nurse.Text = dataGridView1.Rows[e.RowIndex].Cells[5].Value.ToString();
我点击datagridview中的一项 把它的信息都显示在下面  ,文本框是好使的 ,但是combobox不显示,让combobox显示的话应该怎么写
------解决思路----------------------
如你的下拉控件不是可编辑的那种类型(ComboBoxStyle.DropDownList),要通过设置SelectedIndex