Ctrl+Enter Tuşunu Combobox ta Kullanmak-VC#.Net

Combobox.Text teki stringi Ctrl+Enter tuşuna basıp alacağız.Daha sonra aldığımız stringi WebBrowser da kullanacağız.

Örnek: Combobox Text e google yazacağız.(Şekil 1)


Şekil 1


Şekil 2

Daha sonra Ctrl+Enter tuş kombinasyonuna basacağız.

Böylece WebBrowser da (http://www.google.com) sayfası açılacak ve
Combobox.Text te http://www.google.com yazacak.
Not: InitializeComponent(); den sonra
this.comboBox1.KeyUp += new KeyEventHandler(comboBox1_KeyUp);
eklemeyi unutmayın.


namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.comboBox1.KeyUp += new KeyEventHandler(comboBox1_KeyUp);
}

private void comboBox1_KeyUp(object sender, KeyEventArgs e)
{
string str;
str = comboBox1.Text;

if ((e.KeyValue == 13) && (e.Control))

comboBox1.Text = "http://www." + str + ".com";
webBrowser1.Navigate(comboBox1.Text);
}
}
}

//Bir sonraki makalede buluşmak ü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...