InkCanvas.SelectionChanging 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 um novo conjunto de elementos e/ou traços de tinta está sendo selecionado.
public:
event System::Windows::Controls::InkCanvasSelectionChangingEventHandler ^ SelectionChanging;
public event System.Windows.Controls.InkCanvasSelectionChangingEventHandler SelectionChanging;
member this.SelectionChanging : System.Windows.Controls.InkCanvasSelectionChangingEventHandler
Public Custom Event SelectionChanging As InkCanvasSelectionChangingEventHandler
Public Event SelectionChanging As InkCanvasSelectionChangingEventHandler
Tipo de evento
Exemplos
O exemplo a seguir torna os traços selecionados azuis reais.
void inkCanvas1_SelectionChanging(object sender, InkCanvasSelectionChangingEventArgs e)
{
StrokeCollection selectedStrokes = e.GetSelectedStrokes();
foreach (Stroke aStroke in inkCanvas1.Strokes)
{
if (selectedStrokes.Contains(aStroke))
{
aStroke.DrawingAttributes.Color = Colors.RoyalBlue;
}
else
{
aStroke.DrawingAttributes.Color = inkCanvas1.DefaultDrawingAttributes.Color;
}
}
}
Private Sub inkCanvas1_SelectionChanging(ByVal sender As Object, _
ByVal e As InkCanvasSelectionChangingEventArgs)
Dim selectedStrokes As StrokeCollection = e.GetSelectedStrokes()
Dim aStroke As Stroke
For Each aStroke In inkCanvas1.Strokes
If selectedStrokes.Contains(aStroke) Then
aStroke.DrawingAttributes.Color = Colors.RoyalBlue
Else
aStroke.DrawingAttributes.Color = inkCanvas1.DefaultDrawingAttributes.Color
End If
Next aStroke
End Sub
Comentários
O SelectionChanging evento é gerado quando traços e/ou elementos são selecionados pelo usuário , mas antes que a alteração seja aplicada.
O SelectionChanging evento é processado quando o InkCanvasSelectionChangingEventHandler recebe um InkCanvasSelectionChangingEventArgs objeto . InkCanvasSelectionChangingEventArgs fornece métodos para acessar FrameworkElement objetos e StrokeCollection depois que eles são selecionados pelo usuário.
Depois que a alteração é aplicada, o SelectionChanged evento é gerado.
Observação
O SelectionChanging evento não ocorre quando os traços selecionados são excluídos ou quando a ActiveEditingMode propriedade é alterada.