WPF snapping controls - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T00:37:09Z http://stackoverflow.com/feeds/question/1063338 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1063338/wpf-snapping-controls 6 WPF snapping controls oreon 2009-06-30T12:19:37Z 2009-07-02T15:38:37Z <p>Hello everyone,</p> <p>my current free-time project, in order to dive into WPF MVVM, is a "digital" copy of an old puzzle I used to play a lot in my childhood. It basically is a simple puzzle where one has to fill a given space with different kind of pieces so the whole space is filled. But with the extra twist of being in hexagonal space. </p> <p>Just to illustrate, this is what it currently looks like in WPF:</p> <p><img src="http://img190.imageshack.us/img190/2553/atomgridmolecule.png"></p> <p>So basically there is a number of predefined pieces(like the orange one above) which can be "plugged" into the given grid(the gray stuff above). </p> <p>So the result might look something like this:</p> <p><img src="http://img30.imageshack.us/img30/2553/atomgridmolecule.png"></p> <p>I want the user(probably only me^^) to be able to drag and drop the pieces into the grid. I want the dragging to look natural meaning having the correct offset while dragging depending on where the user clicked the piece.</p> <p>Both grid and molecule are the same control, a custom hexagonal panel control derived from the WPF Panel class. </p> <p>The problem is on how to do the "plugging in" and especially the "unplugging".</p> <p>I have two ideas on how I might tackle this:</p> <ol> <li>Just color the cells in the grid and hiding the original piece <ul> <li>Pro: <ul> <li>Zero cost perfect alignment of the cells</li> </ul></li> <li>Cons: <ul> <li>Recreating the piece at the right spot with the correct mouse offset if dragging out, seems impossibly? hard to do</li> </ul></li> </ul></li> <li>Snapping the piece to the grid and show it on top <ul> <li>Pro: <ul> <li>Dragging out is a simple dragging operation, just as dragging in</li> </ul></li> <li>Disadvantage: <ul> <li>Somehow have to align the piece with the underlying grid, some kind of snapping <br/><br/></li> </ul></li> </ul></li> </ol> <p>So which approach should I take? Even more important how can I even implement this in WPF? Especially using a clean MVVM way. <br/><br/><br/> Thanks so much for your help! Any input is highly appreciated!</p> <p>EDIT: <br/> Thanks Aran, I thought so too.</p> <p>But how do I actually implement this now?</p> <ul> <li>How can I actually get the coordinates?</li> <li>All the orange circles are linked, so how can I "move" or better "plug" them in as one piece?</li> </ul> http://stackoverflow.com/questions/1063338/wpf-snapping-controls/1072055#1072055 1 Answer by Aran Mulholland for WPF snapping controls Aran Mulholland 2009-07-02T01:07:55Z 2009-07-02T01:07:55Z <p>Im inclined to go with the second idea. a simple snapping would just be to test if the centre point of the circle you are dragging is within some tolerance factor of a circle on the grid and if so snap them.</p>