Exemplo n.º 1
0
        private void EditProjectProperties()
        {
            if (this.CurrentProject == null)
            {
                return;
            }
            EditProjectInteraction interaction = new EditProjectInteraction(this.CurrentProject.Value);

            this.eventAggregator.GetEvent <OpenWindowEvent>().Publish(interaction);
        }
Exemplo n.º 2
0
        public void EditProjectProperties()
        {
            EditProjectInteraction interaction = new EditProjectInteraction(this.Project);

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