I have this piece of code
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
if(e.KeyCode== Keys.Z)
{
BarTimer.Value = 0;
timer1.Start();
timer1.Interval = 500;
BarTimer.Minimum = 0;
BarTimer.Maximum = 80;
}
}
And it works just fine, but I want to be able to press it when in a fullscreen application, so I can see the progress bar on my second monitor. Is there a property or something i can change to make it work like that?