Is there a method within the RichTextBox control in WPF to allow for the user to resize inserted images, or do you have to devise your own method for this.
What I’m trying to achieve is shown below, a screenshot of a WordPad doing what I want:
Notes:
- Reading the RTF file as plain text I find that the control tags related to image size is
\picscalex100and\picscaley100(where 100 denotes scaled to 100%).
So yeah, is there a proper way or trick to this? Any advice on how to go about programming it? Or am I looking at the wrong control altogether?

Turns out you need to wrap your image in a
ResizingAdorner.A beautiful and simple implementation of this code can be found at http://msdn.microsoft.com/en-us/library/ms771714%28loband%29.aspx by Marco Zhou (second post).
The code for this
ResizingAdorneris available as an MSDN sample at http://msdn.microsoft.com/en-us/library/ms771714%28loband%29.aspxHere’s a VB.net equivalent of the code I am now using
The
ResizingAdornersample will require some great hacking to meet my needs, but what a great start.Hope someone else finds this useful!