void IMouseProcessor.PreprocessQueryContinueDrag(QueryContinueDragEventArgs e)
 {
     foreach (var controller in GetControllersForView(TextView))
     {
         IMouseProcessor customProcessor = controller.CustomMouseProcessor;
         if (customProcessor != null)
         {
             customProcessor.PreprocessQueryContinueDrag(e);
         }
     }
 }
Beispiel #2
0
 protected override void OnQueryContinueDrag(System.Windows.QueryContinueDragEventArgs e)
 {
 }
Beispiel #3
0
 public void PreprocessQueryContinueDrag(System.Windows.QueryContinueDragEventArgs e)
 {
 }
Beispiel #4
0
 public void PostprocessQueryContinueDrag(System.Windows.QueryContinueDragEventArgs args)
 {
 }
 void IMouseProcessor.PreprocessQueryContinueDrag(QueryContinueDragEventArgs e)
 {
     foreach (var controller in GetControllersForView(TextView))
     {
         IMouseProcessor customProcessor = controller.CustomMouseProcessor;
         if (customProcessor != null)
             customProcessor.PreprocessQueryContinueDrag(e);
     }
 }