Tagged Questions

0
votes
1answer
15 views

Get removed elements in InkCanvas

Hi, I was wonder if there was any method in which I can access an element which the user removes. For example when the InkCanvas is set to Select users can select elements and press delete to remove …
0
votes
2answers
136 views

Get X Y coordinates of elements within an InkCanvas in WPF

Hi, I have an InkCanvas which has it's children programmically added in through C#. They are not set with InkCanvas.LeftProperty or InkCanvas.TopProperty. I was wondering if it was at all possible to …
0
votes
1answer
248 views

saving WPF InkCanvas to a JPG - image is getting cropped

I have a WPF InkCanvas control I'm using to capture a signature in my application. The control looks like this - it's 700x300 However, when I save it as a JPG, the resulting image looks like this, …
1
vote
1answer
144 views

WPF InkCanvas - how to determine if it has been “signed”

I'm using a WPF InkCanvas control to capture signatures in a Tablet PC application. One of my requirements is to validate whether or not the application has really been "signed". Right now I'm doing …
1
vote
1answer
215 views

MVVM Binding to InkCanvas

I seem to have ran into a road block. We are using MVVM with Prism and have a View that requires an Ink Canvas. I've create a StrokeCollection that is being bound from my ViewModel to the View. I …