Menu

#10 DragIndicator position error with dual screens

open
5
2007-03-09
2007-03-09
Brian
No

When using dual screens, and the program starts up in the secondary monitor, the location of the DockIndicator is set to the top-left of the second monitor, not the top-left of the primary monitor (which would be 0, 0).

I've already fixed it by adding an explicit reset of the DragIndicator's position in the RefreshChanges function. Like this:

private void RefreshChanges()
{
this.Location = new Point(0, 0);
... // The original code start here
}

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.