Answer the question
In order to leave comments, you need to log in
How to make application transparent on button click?
I have an application I want to have on button click (for example it's 'Home' button). The application became transparent. And vice versa.
Answer the question
In order to leave comments, you need to log in
The form has events that catch keystrokes.
These are KeyPress, KeyDown and KeyUp.
In order for the key interception to work at the level of the form itself, you must specify in its constructor:
Then you can do this:
private void Form1_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Home)
{
this.Opacity = 0.9;
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question