I have a transparent windows form for drawing on other screens. For transparency, I've used the following code:
BackColor = Color.Red;
TransparencyKey = Color.Red;
It worked for a while, but now it does not recognize clicks on the screen, it's like clicking through it. Coincidentally or not, it stopped working after a Windows 10 upgrade, and works on other computers.
It was not a modification in the code that made it stop working, because even going back to earlier versions of the project where the click was recognized does not work anymore. Is there any other way to make window transparency? Follow a print of the program so they can understand what the application is about.