I'm using WindowStartupLocation.Manual to open a window on my app and I wonder if there is a way to tell Windows to ignore that location and do not open the next window after this one (where it is not mentioned a specific location for it) following my window's location..
"Setting the WindowStartupLocation property to Manual causes a window to be positioned according to its Left and Top property values. If either the Left or Top properties aren't specified, their values are determined by Windows."
The thing is, I'm adding a new window to a legacy application.. I open it on a very specific location.. but after that, some of the other windows of that same application are opened at a location based on the location I gave to the new window.. I guess that it is due to the fact that some of the other windows does not have a specify location assigned to them..