Background: I have a window that starts out with a width of 240px, some visual elements can only be displayed a particular way at this width, however resizing is allowed and must be allowed.

If someone decides to resize, then i will need some sort of "Snap" to get back to the original width. It would be a pain/next to impossible to require the users to get the exact px right in order to restore full visual effects.

Question: So, how can i make it so if they get to a certain distance (lets say, within 4px) away from 240px in either direction, it will snap to that width, and resize to a different size only when the resize cursor has strayed over 4px away from the width..

Failed Ideas: ive played with several different things that set the width of the window to 240 on the sizeChanged event if its within the 4px, but since that is on the size event, it will do the calculations after the window has already resized. which means that you get a really choppy effect when it is being resized to/away from the default width.

link|improve this question

If you have only a margin of 4px to resize to and fro i would recomment not to resize the window at all and make it Fixed. User wont gain any visible space in just 4 pixels – Shekhar_Pro Feb 5 '11 at 7:16
... and any way you want it to snap to you 240px then why allow user to resize the window at all.. use scroll bars oof you have some extra information to show – Shekhar_Pro Feb 5 '11 at 7:18
you didnt understand the question at all, @Shekhar_Pro... I said, that within 4px is the width that id like to snap to 240.. The window can be any size, from a width of 10 to a width of 1000. – caesay Feb 5 '11 at 7:24
So in other words, if they are resizing, and they come within 4px of 240, then snap to that. – caesay Feb 5 '11 at 7:24
This is pretty easy to do in WinForms by overriding the WndProc method and listening to Windows messages corresponding to resize events. That eliminates the choppiness of handling the events raised by the form. No idea if that works for WPF, though. I don't have nearly enough experience in that environment. – Cody Gray Feb 5 '11 at 7:32
show 4 more comments
feedback

1 Answer

up vote 1 down vote accepted

Here is a message that explains how to gain fine-grained control over the resizing by handling the WM_SIZING message in your own window procedure:

The moderator's sample code is in VB but there are plenty of C#/WinForms examples you can use to get started.

link|improve this answer
i just used the VB code for reference and wrote my own version in C#. thanks a bunch! – caesay Feb 6 '11 at 19:06
feedback

Your Answer

 
or
required, but never shown

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