Floating child window in WPF
Posted
by
Dusan Kocurek
on Stack Overflow
See other posts from Stack Overflow
or by Dusan Kocurek
Published on 2009-04-06T21:04:42Z
Indexed on
2012/11/09
5:02 UTC
Read the original article
Hit count: 210
I want to create floating child window in .NET 3.0 WPF application. What I'm doing is:
sideWindow = new SideWindow(this);
sideWindow.Left = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width - sideWindow.Width;
sideWindow.Top = 125;
sideWindow.WindowStartupLocation = WindowStartupLocation.Manual;
sideWindow.Owner = this;
sideWindow.Show();
This is running fine except one customer. According to trace messages the window is created, but the client doesn't see it!
Any idea about similar problems?
Thank you very much.
© Stack Overflow or respective owner