public void EditProperties() { EditLayerInteraction interaction = new EditLayerInteraction(); this.actionHandler.OpenWindow(interaction); }
private void EditLayerProperties() { EditLayerInteraction interaction = new EditLayerInteraction(this.Layer); this.actionHandler.OpenWindow(interaction); }
public void EditLayerProperties() { EditLayerInteraction interaction = new EditLayerInteraction(); this.eventAggregator.GetEvent <OpenWindowEvent>().Publish(interaction); }