How can I achieve an overlay, similar to the one you can see in the picture linked below, using C# and WPF?
Thanks in advance
How can I achieve an overlay, similar to the one you can see in the picture linked below, using C# and WPF?
Thanks in advance
Try looking at the Popup Class. Your other option would be to create a custom UserControl.
After reading your comment you may want to look at this SO answer it discusses using CombinedGeometry's to create something like you are looking for.
If you want to set a window to transparent just do either of the following: Window.Background="Transparent", or Opacity="0". As far as how it pops up, either handle mouse enter yourself or set it up as a popup