Ejemplo n.º 1
0
 public static void RemoveRightTappedHandler(IInteractive element, EventHandler <RoutedEventArgs> handler)
 {
     element.RemoveHandler(RightTappedEvent, handler);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Removes a handler for the <see cref="TextFound"/> attached event.
 /// </summary>
 /// <param name="element">An object that raise the <see cref="TextFound"/> routed event.</param>
 /// <param name="handler">The handler.</param>
 public static void RemoveTextFoundHandler(IInteractive element, EventHandler <TextFoundRoutedEventArgs> handler)
 {
     element?.RemoveHandler(TextFoundEvent, handler);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Removes a handler for the <see cref="PdfPrintFinished"/> attached event.
 /// </summary>
 /// <param name="element">An object that raise the <see cref="PdfPrintFinished"/> routed event.</param>
 /// <param name="handler">The handler.</param>
 public static void RemovePdfPrintFinishedHandler(IInteractive element, EventHandler <PdfPrintFinishedRoutedEventArgs> handler)
 {
     element?.RemoveHandler(PdfPrintFinishedEvent, handler);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Removes a handler for the <see cref="PdfPrintFinished"/> attached event.
 /// </summary>
 /// <param name="element">An object that raise the <see cref="PdfPrintFinished"/> routed event.</param>
 /// <param name="handler">The handler.</param>
 public static void RemoveStatusTextChangedHandler(IInteractive element, EventHandler <EventArgs> handler)
 {
     element?.RemoveHandler(PdfPrintFinishedEvent, handler);
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Removes a handler for the <see cref="ScriptDialogOpening"/> attached event.
 /// </summary>
 /// <param name="element">An object that raise the <see cref="ScriptDialogOpening"/> routed event.</param>
 /// <param name="handler">The handler.</param>
 public static void RemoveScriptDialogOpeningHandler(IInteractive element, EventHandler <ScriptDialogOpeningRoutedEventArgs> handler)
 {
     element?.RemoveHandler(ScriptDialogOpeningEvent, handler);
 }