Поделиться через


InkPresenter.StrokeInput Свойство

Определение

Возвращает объект InkStrokeInput для управления событиями ввода рукописного ввода.

public:
 property InkStrokeInput ^ StrokeInput { InkStrokeInput ^ get(); };
InkStrokeInput StrokeInput();
public InkStrokeInput StrokeInput { get; }
var inkStrokeInput = inkPresenter.strokeInput;
Public ReadOnly Property StrokeInput As InkStrokeInput

Значение свойства

Входные данные рукописного ввода.

Примеры

Здесь мы объявляем прослушиватель StrokeStarted .

inkCanvas.InkPresenter.StrokeInput.StrokeStarted += StrokeInput_StrokeStarted;

Затем мы определяем соответствующий обработчик, который очищает все выделенные штрихи при запуске нового росчерка рукописного ввода.

private void StrokeInput_StrokeStarted(InkStrokeInput sender, Windows.UI.Core.PointerEventArgs args)
{
  var strokes = inkCanvas.InkPresenter.StrokeContainer.GetStrokes();
  foreach (var stroke in strokes)
  {
    stroke.Selected = false;
  }
  ClearDrawnBoundingRect();
}

Применяется к

См. также раздел