ManipulationProcessor2D.Delta Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando a origem da manipulação mudou ou quando houve translação, colocação em escala ou rotação.
public:
event EventHandler<System::Windows::Input::Manipulations::Manipulation2DDeltaEventArgs ^> ^ Delta;
public event EventHandler<System.Windows.Input.Manipulations.Manipulation2DDeltaEventArgs> Delta;
member this.Delta : EventHandler<System.Windows.Input.Manipulations.Manipulation2DDeltaEventArgs>
Public Custom Event Delta As EventHandler(Of Manipulation2DDeltaEventArgs)
Public Event Delta As EventHandler(Of Manipulation2DDeltaEventArgs)
Tipo de evento
Exemplos
#region OnManipulationOrInertiaDelta
private void OnManipulationOrInertiaDelta(object sender, Manipulation2DDeltaEventArgs e)
{
// The values obtained from e.Delta can be used to move, resize, or
// change the orientation of the element that is being manipulated.
}
#endregion
Comentários
O ManipulationProcessor2D.Delta evento e o InertiaProcessor2D.Delta evento são do mesmo tipo. Normalmente, você pode usar o mesmo manipulador de eventos para ambos os eventos.
Aplica-se a
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.