Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# how to show a form at a specific mouse position on the screen?

I have two Forms, my main form is Form1 and my secondary form shown on demand as a dialog is Form2. Now if I call Form2 it shows always up in the upper left corner on my screen. First time I thought my form isn't there at all, but then I saw it hanging in the upper screen corner. I would like to show my form at the current mouse position where the user clicks a context menu to show up the modal dialog. I have already tried different things and searched for code samples. But I found nothing besides thousand of different codes on how to get the actual mouse position in different ways which I already know. But this position is anyway always relative to the screen, the main form, the control or whatever the current context is. Here my code (the desktop positioning which I also tried doesn't work and center-to-screen centers the form only, so I left the property to Windows.Default.Position):

        Form2 frm2 = new Form2();
        frm2.textBox1.Text = listView1.ToString();
        frm2.textBox1.Tag = RenameFile;
        DialogResult dlgres=frm2.ShowDialog(this);
        frm2.SetDesktopLocation(Cursor.Position.X, Cursor.Position.Y);
like image 674
feedwall Avatar asked Jul 19 '12 01:07

feedwall


2 Answers

Your problem is that your first call: frm2.ShowDialog(this); and then call frm2.SetDesktopLocation which in fact only gets called after the form (frm2) has already closed.

ShowDialog is a blocking call - meaning that it returns only when the form your are calling ShowDialog on closes. So you will need a different approach to setting the form position.

Probably the easiest way to accomplish that would be to create a second constructor on your Form2 (that you want positioned) which takes two parameters, for the X and Y coordinates.

public class Form2
{

    // add this code after the class' default constructor

    private int desiredStartLocationX;
    private int desiredStartLocationY;

    public Form2(int x, int y)
           : this()
    {
        // here store the value for x & y into instance variables
        this.desiredStartLocationX = x;
        this.desiredStartLocationY = y;

        Load += new EventHandler(Form2_Load);
    }

    private void Form2_Load(object sender, System.EventArgs e)
    {
        this.SetDesktopLocation(desiredStartLocationX, desiredStartLocationY);
    }

Then, when you create the form to display it, use this constructor instead of the default one:

Form2 frm2 = new Form2(Cursor.Position.X, Cursor.Position.Y);
frm2.textBox1.Text = listView1.ToString();
frm2.textBox1.Tag = RenameFile;
DialogResult dlgres=frm2.ShowDialog(this);

You can also try using this.Move(...)' instead of 'this.SetDesktopLocation in the Load handler.

like image 180
Mike Dinescu Avatar answered Sep 28 '22 05:09

Mike Dinescu


You need to call SetDesktopLocation before the ShowDialog() method, like so :

using(Form2 frm2 = new Form2())
{
    frm2.textBox1.Text = listView1.ToString();
    frm2.textBox1.Tag = RenameFile;
    frm2.SetDesktopLocation(Cursor.Position.X, Cursor.Position.Y);

    DialogResult dlgres=frm2.ShowDialog(this);
}

Use the using statemen, it's recomanded. Good luck ;)

like image 41
SidAhmed Avatar answered Sep 28 '22 07:09

SidAhmed