1. 程式人生 > >通過鍵盤點選回車鍵選擇ComboBox中下拉的元素

通過鍵盤點選回車鍵選擇ComboBox中下拉的元素



當我們選擇ComboBox中下拉的元素時,可以直接使用滑鼠點選選取,當有特殊需要想要通過敲回車選中元素時,可以使用鍵盤事件KeyPress
程式碼如下:

   private void comboBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            comboBox1.Text = comboBox1.SelectedItem.ToString();//show the selectieditem to the combobox.text
            Show(dataGridView1);//replace it with your load data method
        }

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            Show(dataGridView1);
        }

        public static void Show(DataGridView dgw)
        {
            //add your method load data
            DataSet customerDataSet = new DataSet();
            customerDataSet.Tables.Add(new DataTable("Customers"));
            customerDataSet.Tables["Customers"].Columns.Add("Name", typeof(string));
            customerDataSet.Tables["Customers"].Columns.Add("CountryRegion", typeof(string));
            customerDataSet.Tables["Customers"].Rows.Add("Juan", "Spain");
            customerDataSet.Tables["Customers"].Rows.Add("Johann", "Germany");
            customerDataSet.Tables["Customers"].Rows.Add("John", "UK");
            dgw.DataSource = customerDataSet.Tables["Customers"];
        }

——————————————————————————————————————————————————————————————————————————————————————————————————————————————

歡迎大神光臨菜鳥部落格,希望能得到各位大神在編碼方面的指引,同時歡迎與我一樣剛進入程式設計世界的朋友一起討論學習!相信前進的道路上,有你們,程式設計世界會更加精彩!