private void CmViewChampionsClick(object sender, RoutedEventArgs e) { var account = _accountsDataGrid.SelectedItem as Account; if (account == null) { return; } var window = new ChampionsWindow(account); window.Show(); }