vote up 3 vote down star
1

Hi there,

I need to write a simple WPF program to draw a Bezier curve, but I have to draw it programmatically since I need to allow user to modify the shape interactively.

Any code sample to do this task is highly appreciated!

Thanks,

Mike

flag

4 Answers

vote up 2 vote down

Check out this demo:

link|flag
Nice link. Note that it requires .NET 3.5 SP1 (but only insomuch as to support StringFormat which can be removed to get it running). – Drew Noakes Aug 17 at 18:08
vote up 0 vote down

Have a look at the Path Markup Syntax to get a feel for the raw drawing primitives available to you in WPF.

You could use either cubic or quadratic Bezier curves (each has a smoothed version too) depending on how you want to define the control points.

As for rendering the control points on screen and allowing the user to drag them about you might like to look into adorners and possibly the Thumb class.

link|flag
vote up -1 vote down

Here is a decent tutorial from Cal Fullerton with coding examples.

link|flag
vote up -1 vote down

I know the Bezier curve math pretty well, just don't know how to use WPF to draw it.

Thanks

Mike

link|flag
1  
Somebody needs to read the faq – Will Aug 17 at 13:59
Mike -- What Will is eluding to here is that you should reply to individual answers as a comment rather than as an answer. However, you don't have enough rep to comment yet, so I guess you could edit your original question. – Drew Noakes Aug 17 at 14:09

Your Answer

Get an OpenID
or

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