wpf and win32 overlapping issue
Posted
by priya-hatipkar
on Stack Overflow
See other posts from Stack Overflow
or by priya-hatipkar
Published on 2010-06-04T11:27:37Z
Indexed on
2010/06/07
7:12 UTC
Read the original article
Hit count: 498
I have a wpf Window, which has wpf control and windows forms control hosted in WindowsFormsHost. The expected behavior is that the WPF control should be rendered on top of WindowsFormsHost.
Unfortunately, this is a limitation in the interop story, WindowsFormsHost elements are always drawn on top, and don't get affected by z-order. http://msdn.microsoft.com/en-us/library/ms742522.aspx
Is there any workaround to solve this problem?
Regards, Priya
© Stack Overflow or respective owner