CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Threaded View

  1. #1
    Join Date
    Oct 2009
    Location
    Holland
    Posts
    201

    How To Move a Border-less Dialog

    Hi all,

    As the title sugest, it is -standard- not possible to move a boderless dialog
    (Keep mouse button depressed and move the cursor)
    You have to make it.
    So I came up with:

    Code:
    private void Dialog1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
    { 
           while (Mouse.LeftButton == MouseButtonState.Pressed)
           {
               this.Location = new Point(MousePosition.X, MousePosition.Y);
               this.Update();
           }
       }
    but it does not work, however if I change pressed to depressed it works partly.

    regards,

    Ger
    Last edited by TBBW; December 11th, 2012 at 02:06 PM. Reason: code correction

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured