I have windows.forms application that create WPF window on button-click event handler. It calls "Show" method on WPF window instance.
WPF window starts to listen to parent window events and try to resize itself (setting left,top,width,height properties) when parent windows.forms window location is changed (WPF window visually follows Windows.Forms windows as it was pinned).
Everything works ok but for some reason I occasionally receive SEH exception was unhandled popup window:
at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.Run(Form mainForm) ...
It appears from time to time and it's hard to find out what I am doing wrong.
I also noticed, that WPF window and Windows.Forms window running on different threads.
Any ideas?