Blur effect / Blur in Windows forms Is it possible?

-1

Since a while ago I had this doubt, and that is that I wanted to add a blur effect to my form, that is to say at the bottom of the form (BackColor) But with that defocusing of what is behind the form, I do not know if I explain, but ... I have not found anything yet ...

Something like that I want the effect

    
asked by Kevin Figueroa 18.12.2017 в 00:51
source

2 answers

0

The form has a Opacity property that accepts a value between 0 (transparent form) and 1 (default value).

You only have to change the value of this property to make the form more or less transparent:

Public Sub HacerSemiTransparente()
  miFormulario.Opacity = 0.5
End Sub
    
answered by 18.12.2017 в 01:09
0

I appreciate the answers. But I found a very functional method, which is to use a .dll library called "ExtendAero" to extend the aero of the title bar to the entire form. But before doing this, you must have installed the AeroGlass in Windows 8, 8.1 and 10. If you do not see everything in white. I'll upload a video about this on my YouTube channel, for whoever wants to watch it.

Here I leave you how I stay:

    
answered by 21.01.2018 в 18:55