/// <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); } }
/// <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); }
private static void FeatureLayerShowAttributesClicked(object sender, FeatureLayerEventArgs e) { attributeDialog = new AttributeDialog(e.FeatureLayer); attributeDialog.Show(); }