Questions tagged [inkcanvas]

An InkCanvas is an element that can be used to receive and display ink input.

An InkCanvas is an element that can be used to receive and display ink input. This is commonly done through the use of a stylus, which interacts with a digitizer to produce ink strokes using a stylus or a mouse. The created strokes are represented as Stroke objects, and can be manipulated either programmatically or based on user input. The InkCanvas enables users to modify or delete an existing Stroke.

The InkCanvas can be bound to a data source. For example, you can bind the Strokes property to: a base-64, encoded string that contains ink data in Ink Serialized format (ISF); or even to the Strokes property of another InkCanvas. You can also bind properties, such as DefaultDrawingAttributes and EditingMode, to other data sources.

source

289 questions
-2
votes
1 answer

For Wpf, is there an existing class to draw shapes in inkcanvas?

I'm looking for a class that allows the user to draw shapes via an inkcanvas. Similar to the microsoft products possible.
sled
  • 5
  • 1
-2
votes
1 answer

NotifyCollectionChangedEventHandler is not workling with background worker

NotifyCollectionChangedEventHandler command does not work with background worker.Event is as : void MainWindowsViewModel_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e) { StrokesEllipse = ((StrokeCollection)sender); …
naina
  • 63
  • 1
  • 9
-2
votes
2 answers

Windows Store apps do not support WPF's

I am working on an application which can take input thru touch screen using mouse or stylus.. Found that works really great for me, but Windows Store app project does not recognize/support tag. Does any came across similar…
1 2 3
19
20