UIElement.CaptureMouse 메서드

정의

이 요소가 마우스를 캡처하게 합니다.

C#
public bool CaptureMouse();

반환

마우스가 캡처되면 true이고, 그렇지 않으면 false입니다.

구현

예제

다음 예제에서는 마우스를 캡처(및 캡슐화 해제)하고 3D 모델을 보기 위한 특수 마우스 모드를 사용하도록 설정하는 마우스 및 키 입력 조합에 대한 처리기 쌍을 구현합니다.

C#
private void MouseDownHandler(object sender, MouseButtonEventArgs e)
{
    if (!Enabled) return;
    e.Handled = true;

    if (Keyboard.IsKeyDown(Key.F1))
    {
        Reset();
        return;
    }

    UIElement el = (UIElement)sender;
    _point = e.MouseDevice.GetPosition(el);
    // Initialize the center of rotation to the lookatpoint
    if (!_centered)
    {
        ProjectionCamera camera = (ProjectionCamera)_slaves[0].Camera;
        _center = camera.LookDirection;
        _centered = true;
    }

    _scaling = (e.MiddleButton == MouseButtonState.Pressed);

    if (!Keyboard.IsKeyDown(Key.Space))
        _rotating = true;
    else
        _rotating = false;

    el.CaptureMouse();
}

private void MouseUpHandler(object sender, MouseButtonEventArgs e)
{
    if (!_enabled) return;
    e.Handled = true;

    // Stuff the current initial + delta into initial so when we next move we
    // start at the right place.
    if (_rotating)
    {
        _rotation = _rotationDelta * _rotation;
    }
    else
    {
        _translate += _translateDelta;
        _translateDelta.X = 0;
        _translateDelta.Y = 0;
    }

    //_scale = _scaleDelta*_scale;
    UIElement el = (UIElement)sender;
    el.ReleaseMouseCapture();
}

설명

캡처하려면 요소를 사용하도록 설정해야 합니다. 를 호출CaptureMouse하기 전에 가 true 인지 확인 IsEnabled 합니다.

를 호출 CaptureMouse 하면 도 IsMouseCaptured 가 반환true됩니다true.

호출 CaptureMouse 이 를 반환 true하면 GotMouseCapture 및 이벤트가 발생하며 IsMouseCapturedChanged , RoutedEventArgs.Source 이벤트 데이터는 메서드가 호출되는 CaptureMouse 요소로 보고됩니다. 캡처를 강제 적용하면 기존 캡처를 방해할 수 있습니다. 특히 마우스로 끌어서 놓기와 관련된 캡처를 사용할 수 있습니다.

모든 요소에서 마우스 캡처를 지우려면 로 제공된 null매개 변수를 element 사용하여 를 호출 Mouse.Capture 합니다.

적용 대상

제품 버전
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

추가 정보