So I have a control in my application that I wanted to utilize the popup for. It is has a WebBrowser control that is a part of it.
I notice that whenever I set the following property only the WebBrowser control disappears on my custom control.
.AllowsTransparency = true;
However, if I remove the property the control looks normal and functions normal. The only reason I am setting that property is because it the control utilizes rounded borders and by default the Popup control has a black background.
This same behavior exists in a Window if you set the AllowsTransparency property to true.
Just to note you can simulate this behavior on a brand new control with no special properties. I have tested both on a new control and a new window.
Any help is appreciated.
Edit
This occurs when the WebBrowser is set to DesignMode = On.