Esempio n. 1
0
        private void Modify()
        {
            if (SelectedExchange == null)
            {
                return;
            }

            var window = new Windows.EditExchangeWindow(this, selectedExchange);

            window.ShowDialog();
        }
Esempio n. 2
0
        private void Add()
        {
            var window = new Windows.EditExchangeWindow(this, null, true);

            window.ShowDialog();
        }