private TimeEditorEventArgs RaiseEditingEvent(TimeEditorAction action, TimeEditorField activeField)
        {
            TimeEditorEventArgs timeEditorArgs = new TimeEditorEventArgs(TimeEditor.EditingEvent, action, activeField);

            RaiseEvent(timeEditorArgs);
            return(timeEditorArgs);
        }
 /// <summary>
 /// Initializes a new instance of the TimeEditorEventArgs class, using the supplied routed event identifier, and
 /// providing the opportunity to declar a different source for the event.
 /// </summary>
 /// <param name="routedEvent">The routed event identifier for this instance of the RoutedEventArgs class.</param>
 /// <param name="source">An alternate source that will be reported when the event is handled. This
 /// pre-populates the RoutedEventArgs.Source property.</param>
 /// <param name="action">The action performed on the TimeEditor</param>
 /// <param name="activeField">The field on which the action was performed.</param>
 public TimeEditorEventArgs(RoutedEvent routedEvent, object source, TimeEditorAction action, TimeEditorField activeField)
     : base(routedEvent, source)
 {
     Action = action;
     ActiveField = activeField;
 }
 /// <summary>
 /// Initializes a new instance of the TimeEditorEventArgs class, using the supplied routed event identifier.
 /// </summary>
 /// <param name="routedEvent">The routed event identifier for this instance of the RoutedEventArgs class.</param>
 /// <param name="action">The action performed on the TimeEditor</param>
 /// <param name="activeField">The field on which the action was performed.</param>
 public TimeEditorEventArgs(RoutedEvent routedEvent, TimeEditorAction action, TimeEditorField activeField)
     : base(routedEvent)
 {
     Action = action;
     ActiveField = activeField;
 }
 /// <summary>
 /// Initializes a new instance of the TimeEditorEventArgs class.
 /// </summary>
 /// <param name="action">The action performed on the TimeEditor</param>
 /// <param name="activeField">The field on which the action was performed.</param>
 public TimeEditorEventArgs(TimeEditorAction action, TimeEditorField activeField)
 {
     Action = action;
     ActiveField = activeField;
 }
Example #5
0
 private TimeEditorEventArgs RaiseEditingEvent(TimeEditorAction action, TimeEditorField activeField)
 {
     TimeEditorEventArgs timeEditorArgs = new TimeEditorEventArgs(TimeEditor.EditingEvent, action, activeField);
     RaiseEvent(timeEditorArgs);
     return timeEditorArgs;
 }
Example #6
0
 /// <summary>
 /// Initializes a new instance of the TimeEditorEventArgs class, using the supplied routed event identifier, and
 /// providing the opportunity to declar a different source for the event.
 /// </summary>
 /// <param name="routedEvent">The routed event identifier for this instance of the RoutedEventArgs class.</param>
 /// <param name="source">An alternate source that will be reported when the event is handled. This
 /// pre-populates the RoutedEventArgs.Source property.</param>
 /// <param name="action">The action performed on the TimeEditor</param>
 /// <param name="activeField">The field on which the action was performed.</param>
 public TimeEditorEventArgs(RoutedEvent routedEvent, object source, TimeEditorAction action, TimeEditorField activeField)
     : base(routedEvent, source)
 {
     Action      = action;
     ActiveField = activeField;
 }
Example #7
0
 /// <summary>
 /// Initializes a new instance of the TimeEditorEventArgs class, using the supplied routed event identifier.
 /// </summary>
 /// <param name="routedEvent">The routed event identifier for this instance of the RoutedEventArgs class.</param>
 /// <param name="action">The action performed on the TimeEditor</param>
 /// <param name="activeField">The field on which the action was performed.</param>
 public TimeEditorEventArgs(RoutedEvent routedEvent, TimeEditorAction action, TimeEditorField activeField)
     : base(routedEvent)
 {
     Action      = action;
     ActiveField = activeField;
 }
Example #8
0
 /// <summary>
 /// Initializes a new instance of the TimeEditorEventArgs class.
 /// </summary>
 /// <param name="action">The action performed on the TimeEditor</param>
 /// <param name="activeField">The field on which the action was performed.</param>
 public TimeEditorEventArgs(TimeEditorAction action, TimeEditorField activeField)
 {
     Action      = action;
     ActiveField = activeField;
 }