ManipulationProcessor2D.ProcessManipulators 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 조작자를 단일 일괄 처리 작업으로 처리합니다.
public:
void ProcessManipulators(long timestamp, System::Collections::Generic::IEnumerable<System::Windows::Input::Manipulations::Manipulator2D> ^ manipulators);
public void ProcessManipulators (long timestamp, System.Collections.Generic.IEnumerable<System.Windows.Input.Manipulations.Manipulator2D> manipulators);
member this.ProcessManipulators : int64 * seq<System.Windows.Input.Manipulations.Manipulator2D> -> unit
Public Sub ProcessManipulators (timestamp As Long, manipulators As IEnumerable(Of Manipulator2D))
매개 변수
- timestamp
- Int64
일괄 처리에 대한 타임스탬프(100나노초 틱)입니다.
- manipulators
- IEnumerable<Manipulator2D>
현재 범위에 있는 조작자 집합입니다.
예외
타임스탬프가 현재 조작에 대한 이전 타임스탬프보다 작습니다.
예제
다음 예에서 OnLostMouseCapture 메서드를 UIElement 개체를 호출 하기 위해 재정의 됩니다를 ProcessManipulators 목록 사용 하 여 메서드 Manipulator2D 개체를 null로 설정 합니다.
#region OnLostMouseCapture
protected override void OnLostMouseCapture(MouseEventArgs e)
{
base.OnLostMouseCapture(e);
manipulationProcessor.ProcessManipulators(Timestamp, null);
}
#endregion
#region Timestamp
private long Timestamp
{
get
{
// Get timestamp in 100-nanosecond units.
double nanosecondsPerTick = 1000000000.0 / System.Diagnostics.Stopwatch.Frequency;
return (long)(System.Diagnostics.Stopwatch.GetTimestamp() / nanosecondsPerTick / 100.0);
}
}
#endregion
설명
매개 변수 manipulators
null 또는 빈 목록 일 수 있습니다. 이 인해 수가 0에 도달 하는 조작자는 Completed 이벤트가 발생 합니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET