I am designing a image editor in silverlight 4.0
Looking for typing text along curvature path like circular or arc
Something similar to what is available in photoshop http://youtu.be/6L6qAKkBQxc
Is there any code snippet available on this?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need a
PathListBox(from Microsoft.Expression.Controls) here.Basically you just need to create a
Pathand convert it intoPathListBox, then bind theTextproperty of aTextBlock(where you specify the text you want) to theItemsSourceof thePathListBox.Something like this.
Another thing is you might want to overwrite the
ItemContainerStyleof thePathListBoxso each letter won’t be selectable.Hope this helps. 🙂