Example #1
0
        /// <summary>
        /// Raises the Picked event</summary>
        /// <param name="e">Event args</param>
        protected virtual void OnPicked(PickEventArgs e)
        {
            EventHandler <PickEventArgs> handler = Picked;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Example #2
0
 /// <summary>
 /// Raises the Picked event</summary>
 /// <param name="e">Event args</param>
 protected virtual void OnPicked(PickEventArgs e)
 {
     EventHandler<PickEventArgs> handler = Picked;
     if (handler != null)
         handler(this, e);
 }