The MSV-Studio description for Locked is "The Locked property determines if we can move or resize the control" so I set the winforms Locked property to true but the form is still movable. What is the correct way to prevent the form from moving?
|
|
I use the following code to display a form dialog window for a corporate security application written in-house - one of the requirements was that the form could not be moved, resized or live under any other form. Anyway, see below for a start...
Then I simply call
I'm not saying it's the only way or the right way, but it a way to do it. |
|||||||||||
|
|
It's generally bad form to prevent the user from moving the window. The user should be able to have the window wherever he wants. Preventing resizing is one thing, preventing moving is another. I'm not aware of any C# native way of doing this, but you can probably hook down into Win32 to prevent the window from moving. |
|||
|
|
|
You might be able to use the Move event of the form and set the form back to the starting position. You would have to capture and store (in memory) the starting position. |
|||
|
|