timheuer / callisto

A control toolkit for Windows 8 XAML applications. Contains some UI controls to make it easier to create Windows UI style apps for the Windows Store in accordance with Windows UI guidelines.
http://timheuer.com/blog/archive/2012/05/31/introducing-callisto-a-xaml-toolkit-for-metro-apps.aspx
Other
338 stars 108 forks source link

Settings fly-out displayed underneath the other controls. #187

Closed BrianDT closed 11 years ago

BrianDT commented 11 years ago

settings flyout issue permissions flyout OK

The first attached image shows a fly-out under a WebView control, this does not happen to the system generated permissions fly-out as show in the second attached image.

timheuer commented 11 years ago

This is actually a WebView issue. WebView owns the z-index order. If something might show over it as in your case you need to switch to a WebViewBrush temporarily.

Not something Callisto can solve.

BrianDT commented 11 years ago

Thanks for the hint about the WebViewBrush, that worked well.