using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using LiveLogger4Log4Net.Client.Services; namespace Nablasoft.LiveLogger { /// /// Interaction logic for GroupSummary.xaml /// public partial class GroupSummary : UserControl { public GroupSummary() { InitializeComponent(); } public LogGroup SelectedGroup { get { ICollectionView view = CollectionViewSource.GetDefaultView(DataContext); return view.CurrentItem as LogGroup; } } private void UserControl_Loaded(object sender, RoutedEventArgs e) { GroupsView.SelectedItem = null; } } }