protected override void OnKeyDown(KeyEventArgs e)
{
Control c = this;
switch (e.KeyCode)
{
case Keys.Up:
while ((c = c.Parent) != null && !c.SelectNextControl(this, false, true, true, true));
break;
case Keys.Down:
while ((c = c.Parent) != null && !c.SelectNextControl(this, true, true, true, true)) ;
break;
}
base.OnKeyDown(e);
}
We Don’t Talk About IrDA
-
We take for granted that every mobile phone, tablet and laptop has
Bluetooth built in, and probably use it all the time for headphones, mice
etc without ev...
3 years ago
No comments:
Post a Comment