public void EditProperties()
        {
            EditLayerInteraction interaction = new EditLayerInteraction();

            this.actionHandler.OpenWindow(interaction);
        }
        private void EditLayerProperties()
        {
            EditLayerInteraction interaction = new EditLayerInteraction(this.Layer);

            this.actionHandler.OpenWindow(interaction);
        }
Beispiel #3
0
        public void EditLayerProperties()
        {
            EditLayerInteraction interaction = new EditLayerInteraction();

            this.eventAggregator.GetEvent <OpenWindowEvent>().Publish(interaction);
        }