Click here to Skip to main content
15,885,651 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
Can i convert canvas to inkcanvas in wpf and vise-versa . and in inkcanvas in editing mode "select", Path drawn on canvas don't get selected,why?
Posted
Updated 5-Mar-12 10:03am
v2
Comments
Sergey Alexandrovich Kryukov 5-Mar-12 16:03pm    
Appropriate tag added: WPF.
--SA

1 solution

Once you define a tag, it is defined. InkCanvas is different from a Canvas. The drawings done on an InkCanvas are in Ink Serialized Format (ISF). The way to convert would be to to create a Canvas, transfer properties, then replece the InkCanvas in the VisualTree with this Canvas. More than likely the path you drew was not ink, so would be in ISF. You cannot interact with Ink anyway. If you want the capability to interact with paths, then you probably will have to create your own control with the abiiity to interact with the items on the canvas (of course you can also try to interact with canvas using events). You can look at http://wrb.home.xs4all.nl/Articles/Article_WPFInkToXAML_01.htm[^] for work done on converting ink to drawing. I do have a project I did I can send you, but it only does paths and some shapes.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900