Is there a way in InkCanvas to insert an image that would be movable, selectable and resizable?
EDIT: My try:
private void AddButton_Click(object sender, RoutedEventArgs e)
{
Image image = new Image
{
Width = 100,
Source = new BitmapImage(new Uri("phone.jpg", UriKind.Relative))
};
InkCanvas.Children.Add(image);
}
But in the inkcanvas is not displaying anything at all. And don't know if this approach would be editable at all.