public void NewLayer()
        {
            NewLayerInteraction interaction = new NewLayerInteraction();

            this.actionHandler.OpenWindow(interaction);
        }
        private void NewLayer()
        {
            NewLayerInteraction interaction = new NewLayerInteraction(this.Layer.Map.Value);

            this.actionHandler.OpenWindow(interaction);
        }
Exemple #3
0
        public void NewLayer()
        {
            NewLayerInteraction interaction = new NewLayerInteraction();

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