Tags-Etiketler
Bu kısımda sitemizde etiketlenmiş makaleleri toplu olarak bulabilirsiniz...
[ enter ] /
Makaleler-Article(s)
enter ile ilgili toplam 2 makale bulundu ! (A total of 2 article(s) about enter was(were) found in all of articles!)
Article |
---|
Ctrl+Enter Tuşunu Combobox ta Kullanmak 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)
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 | Esc, Enter Tuşuna Basıldığında Farklı İşlemler Yapmak Bu makalede Esc tuşuna basıldığında mesaj verdirip formu kapattıracağız ve Button2
aktif olacak. Enter tuşuna basıldığında ise
Button1 aktif olacak. Button1 deki işlemler
yapılacak. Bunun için formun keydown yordamına aşağıdaki kodları yazıyoruz. Formunuza 2 adet button ekleyin.
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.KeyDown += new System.Windows.Forms.KeyEventHandler(Form1_KeyDown);
}
private void Form1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
//Esc tuşuna basılınca button2 aktif olup
//form kapatılıyor.
if (e.KeyCode == Keys.Escape)
{
MessageBox.Show("Çıkış için Esc tuşuna bastınız");
button2.Enabled = true;
button2_Click(sender, e);
}
//Enter tuşuna basıldığında button1
//aktif oluyor ve diğer işlem yapılıyor.
if (e.KeyCode == Keys.Enter)
{
button1.Enabled = true;
button2.Enabled = false;
button1_Click(sender, e);
}
}
private void Form1_Load(object sender, EventArgs e)
{
button1.Enabled = false;
button2.Enabled = false;
}
private void button2_Click(object sender, EventArgs e)
{
Close();
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("Button1 tuşuna tıklandı. ");
}
}
}
//Bir sonraki makalede görüşmek üzere. Bahadır |
|
        Sitede yayınlanan makaleleri
Blog sitemizden de takip edebilirsiniz.
Sitemizdeki makaleleri RSS olarak takip edebilirsiniz.