Samir Sabri
Samir Sabri

Reputation: 71

WPF Custom lasso selector?

How can I implement a custom lasso selector on an InkCanvas? How do I detect involved inks or elements by collecting points generated by mouse movement?

Upvotes: 3

Views: 1029

Answers (1)

EvAlex
EvAlex

Reputation: 2938

  1. No need to implement lasso selector. InkCanvas with EditingMode="Select" lets you select, move and resize elements on the InkCanvas.
  2. The ink strokes that user draws on the InkCanvas are held in Strokes property in the InkCanvas element

Upvotes: 1

Related Questions