Ejemplo n.º 1
0
 /// <summary>
 /// Show the attribute table editor.
 /// </summary>
 /// <param name="layer">Layer whose attribute table is shown.</param>
 public void ShowAttributes(IFeatureLayer layer)
 {
     using (var attributeDialog = new AttributeDialog(layer))
     {
         ShowDialog(attributeDialog);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Show the attribute table editor.
 /// </summary>
 /// <param name="e"></param>
 public void ShowAttributes(IFeatureLayer e)
 {
     using (var attributeDialog = new AttributeDialog(e))
     {
         ShowDialog(attributeDialog);
     }
 }
 private void FeatureLayerShowAttributesClicked(object sender, FeatureLayerEventArgs e)
 {
     var attributeDialog = new AttributeDialog(e.FeatureLayer);
     attributeDialog.Show(Owner);
 }
Ejemplo n.º 4
0
 private static void FeatureLayerShowAttributesClicked(object sender, FeatureLayerEventArgs e)
 {
     attributeDialog = new AttributeDialog(e.FeatureLayer);
     attributeDialog.Show();
 }