private void ViewProperties()
        {
            if (this.Session.CurrentTilesetCount == 0)
            {
                return;
            }
            EditTilesetInteraction interaction = new EditTilesetInteraction(this.TilesetModel.Value, OnNewTilesetWindowClosed);

            this.eventAggregator.GetEvent <OpenWindowEvent>().Publish(interaction);
        }
Beispiel #2
0
        public void ViewProperties()
        {
            EditTilesetInteraction interaction = new EditTilesetInteraction();

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