Tagged Questions

26
votes
2answers
707 views

Maximize and Aero snap on DockableFloatingWindow

I have the following code to give a undocked floating AvalonDock window the ability to maximize: class MaximizableDockableContent : AvalonDock.DockableContent { public ...
9
votes
1answer
1k views

WPF snapping controls

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 ...
3
votes
1answer
438 views

How can I make a Slider control in WPF that has a single snap point?

For example the 'Zoom' control in Microsoft Word/PowerPoint 2010 has a snap point at value 100%. I know that there is a possibility to make it snap to specific intervals by setting up ticks, and ...
2
votes
1answer
254 views

Make resizing snap to certain widths of a Window

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 ...
0
votes
0answers
86 views

How a Slider control in WPF can snap on specific values?

I want to create a slider, with values from 0 to 100 that I can slide like any other slider... but at position 30, 42 and 55 (for example) I want to snap to these values, to make easy to the user to ...