I have a circular button, which I want to resize (similarly to how you do it in the design window). If this was a rectangle I can attach some thumbs or adorners around the edges and keep track of the drag delta and update the size correspondingly. But how do I do it for a circle, I guess I could add a circular thumb around the outside and when the user drags it I can update the size of the templated parent. Any other way to go about this?

link|improve this question

70% accept rate
Do you want some feedback on your idea (yes, I think it's a good idea) or do you want someone to write your source code for you? – Heinzi Aug 24 '11 at 14:29
@Heinzi no, just ideas, is there any other way to go about this? – mihajlv Aug 24 '11 at 14:34
I don't know any, but +1 for an interesting question. – Heinzi Aug 24 '11 at 14:39
You can use a standard rectangular resize adorner - which can be found in many places, it'll support for both ellipses and circles - does it not suit you by some reason? – user572559 Aug 24 '11 at 14:47
1  
Here's the one, I didn't try it myself though: denisvuyka.wordpress.com/2007/10/13/… – user572559 Aug 24 '11 at 15:05
show 4 more comments
feedback

2 Answers

Here's the one, I didn't try it myself though: http://denisvuyka.wordpress.com/2007/10/13/the-wpf-resizing-adorner-for-canvas/

link|improve this answer
feedback

I've to admit there's one more elegant solution for the problem, it's more advanced from a technology point of view too - namely a resize behavior:

http://10rem.net/blog/2010/01/09/a-wpf-behavior-for-window-resize-events-in-net-35

link|improve this answer
thankas, that one does look a little more advanced. – mihajlv Aug 25 '11 at 12:00
Resize is a ulility function, so in a way it's righ to factor it up as a behavior as opposed to a user control etc. – user572559 Aug 25 '11 at 12:16
feedback

Your Answer

 
or
required, but never shown

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