Beispiel #1
0
 /// <summary>
 /// The protected OnSectionEndValueChanged method raises the
 /// <see cref="SectionEndValueChanged"/>event by invoking the delegates
 /// </summary>
 /// <param name="e">A <see cref="PositionValueChangedEventArguments"/> with the new time
 /// of the sections end.</param>
 protected void OnSectionEndValueChanged(PositionValueChangedEventArguments e)
 {
     if (SectionEndValueChanged != null)
     {
         // Invokes the delegates.
         SectionEndValueChanged(this, e);
     }
 }
Beispiel #2
0
        ///////////////////////////////////////////////////////////////////////////////
        // Eventhandler                                                              //
        ///////////////////////////////////////////////////////////////////////////////
        #region EVENTS

        ///////////////////////////////////////////////////////////////////////////////
        // Eventhandler for UI, Menu, Buttons, Toolbars etc.                         //
        ///////////////////////////////////////////////////////////////////////////////
        #region WINDOWSEVENTHANDLER
        #endregion //WINDOWSEVENTHANDLER

        ///////////////////////////////////////////////////////////////////////////////
        // Eventhandler for Custom Defined Events                                    //
        ///////////////////////////////////////////////////////////////////////////////
        #region CUSTOMEVENTHANDLER

        /// <summary>
        /// The protected OnCaretValueChanged method raises the
        /// <see cref="CaretValueChanged"/>event by invoking the delegates
        /// </summary>
        /// <param name="e">A <see cref="PositionValueChangedEventArguments"/> with the new time.</param>
        protected void OnCaretValueChanged(PositionValueChangedEventArguments e)
        {
            if (CaretValueChanged != null)
            {
                // Invokes the delegates.
                CaretValueChanged(this, e);
            }
        }
Beispiel #3
0
 /// <summary>
 /// The protected OnSectionEndValueChanged method raises the 
 /// <see cref="SectionEndValueChanged"/>event by invoking the delegates
 /// </summary>
 /// <param name="e">A <see cref="PositionValueChangedEventArguments"/> with the new time
 /// of the sections end.</param>
 protected void OnSectionEndValueChanged(PositionValueChangedEventArguments e)
 {
   if (SectionEndValueChanged != null)
   {
     // Invokes the delegates. 
     SectionEndValueChanged(this, e);
   }
 }
Beispiel #4
0
    ///////////////////////////////////////////////////////////////////////////////
    // Eventhandler                                                              //
    ///////////////////////////////////////////////////////////////////////////////
    #region EVENTS

    ///////////////////////////////////////////////////////////////////////////////
    // Eventhandler for UI, Menu, Buttons, Toolbars etc.                         //
    ///////////////////////////////////////////////////////////////////////////////
    #region WINDOWSEVENTHANDLER
    #endregion //WINDOWSEVENTHANDLER

    ///////////////////////////////////////////////////////////////////////////////
    // Eventhandler for Custom Defined Events                                    //
    ///////////////////////////////////////////////////////////////////////////////
    #region CUSTOMEVENTHANDLER

    /// <summary>
    /// The protected OnCaretValueChanged method raises the 
    /// <see cref="CaretValueChanged"/>event by invoking the delegates
    /// </summary>
    /// <param name="e">A <see cref="PositionValueChangedEventArguments"/> with the new time.</param>
    protected void OnCaretValueChanged(PositionValueChangedEventArguments e)
    {
      if (CaretValueChanged != null)
      {
        // Invokes the delegates. 
        CaretValueChanged(this, e);
      }
    }