Ejemplo n.º 1
0
        /// <summary>
        /// Raises the ManipulatorEnd event</summary>
        /// <param name="e">Event args</param>
        protected virtual void OnManipulatorEnd(ManipulatorEventArgs e)
        {
            EventHandler <ManipulatorEventArgs> handler = ManipulatorEnd;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Raises the ManipulatorEnd event</summary>
 /// <param name="e">Event args</param>
 protected virtual void OnManipulatorEnd(ManipulatorEventArgs e)
 {
     EventHandler<ManipulatorEventArgs> handler = ManipulatorEnd;
     if (handler != null)
         handler(this, e);
 }