/// <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); } }
/// <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); }