I'm trying to set a Windows Form on secondary monitor, as follows:

    private void button1_Click(object sender, EventArgs e)
    {
        MatrixView n = new MatrixView();
        Screen[] screens = Screen.AllScreens;
        setFormLocation(n, screens[1]);
        n.Show();
    }

    private void setFormLocation(Form form, Screen screen)
    {
        // first method
        Rectangle bounds = screen.Bounds;
        form.SetBounds(bounds.X, bounds.Y, bounds.Width, bounds.Height);

        // second method
        //Point location = screen.Bounds.Location;
        //Size size = screen.Bounds.Size;

        //form.Left = location.X;
        //form.Top = location.Y;
        //form.Width = size.Width;
        //form.Height = size.Height;

    }

The properties of bounds seem correct, but in both methods I've tried, this maximizes the form on the primary monitor. Any ideas?

link|improve this question

Just to be sure, the WindowState on MatrixView isn't Maximized, is it? – Austin Salonen Sep 1 '09 at 16:26
@Austin No, the WindowState is Normal. – David Hodgson Sep 1 '09 at 16:38
feedback

2 Answers

up vote 3 down vote accepted

Try setting WindowStartUpLocation parameter as "manual" inside your SetFormLocation method.

link|improve this answer
Yeah, doing form.StartPosition = FormStartPosition.Manual; did the trick. Any idea why? – David Hodgson Sep 1 '09 at 16:54
@Henk No, it's Windows Forms. Here's a link to it: msdn.microsoft.com/en-us/library/… – David Hodgson Sep 1 '09 at 17:01
From MSDN: "Setting WindowStartupLocation 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." msdn.microsoft.com/en-us/library/… – Sesh Sep 1 '09 at 17:16
feedback

Are you sure screens[1] is your secondary? Give screens[0] a try. Your code is basically correct.


Ok, I checked, you will have to do it after the Show():

n.Show();
setFormLocation(n, screens[1]);

which gives some unwanted flicker. But you can probably do:

n.SetBounds(-100, -100, 10, 10);  // or similar
n.Show();
setFormLocation(n, screens[1]);
link|improve this answer
Relatively sure - using screens[0] and screens[1] give the same result. – David Hodgson Sep 1 '09 at 16:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.