Exemplo n.º 1
0
        private void CmViewRunesClick(object sender, RoutedEventArgs e)
        {
            var account = _accountsDataGrid.SelectedItem as Account;

            if (account == null)
            {
                return;
            }

            var window = new RunesWindow(account);

            window.Show();
        }
Exemplo n.º 2
0
        private void CmViewRunesClick(object sender, RoutedEventArgs e)
        {
            var account = _accountsDataGrid.SelectedItem as Account;

            if (account == null)
            {
                return;
            }

            var window = new RunesWindow(account);
            window.Show();
        }