Ejemplo n.º 1
0
 /// <summary>
 /// Fires the selection changed event
 /// </summary>
 /// <param name="sender">the object sender of the event</param>
 /// <param name="args">The FeatureLayerSelectionEventArgs of the layer</param>
 protected virtual void OnSelectionChanging(object sender, FeatureLayerSelectionEventArgs args)
 {
     if (SelectionChanging != null)
     {
         SelectionChanging(sender, args);
     }
 }
Ejemplo n.º 2
0
 private void CollectionSelectionChanging(object sender, FeatureLayerSelectionEventArgs e)
 {
     OnSelectionChanged();
 }
Ejemplo n.º 3
0
 private void collection_SelectionChanging(object sender, FeatureLayerSelectionEventArgs e)
 {
     OnSelectionChanged();
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Fires the selection changed event.
 /// </summary>
 /// <param name="sender">the object sender of the event.</param>
 /// <param name="args">The FeatureLayerSelectionEventArgs of the layer.</param>
 protected virtual void OnSelectionChanging(object sender, FeatureLayerSelectionEventArgs args)
 {
     SelectionChanging?.Invoke(sender, args);
 }