Na nivou forme uhvatis KeyDown event. Sledeci primer togluje textbox visibility na Ctrl-Alt-S, ti prilagodi za svoju primenu
Code:
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
if (e.Control & e.Alt & e.KeyValue == 'S')
{
textBox1.Visible = !textBox1.Visible;
e.Handled = true; // ovo samo ako hoces da key code ne ide dalje u kontrole.
}
}
▪ The word 'politics' is derived from the word 'poly', meaning 'many', and the word 'ticks', meaning 'blood sucking parasites' - Larry Hardiman
▪ If the good guy gets the girl, it's rated PG; if the bad guy gets the girl, it's rated R; and if everybody gets the girl, it's rated X
▪ Illegal aliens have always been a problem in the United States. Ask any Native American