diff --git a/View/QueryView.xaml b/View/QueryView.xaml index d52e7bc..be0e5a4 100644 --- a/View/QueryView.xaml +++ b/View/QueryView.xaml @@ -5,9 +5,14 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:Audit.View" mc:Ignorable="d" DataContext="{Binding Source={StaticResource Locator},Path=Query}" - d:DesignHeight="900" d:DesignWidth="1100"> + d:DesignHeight="900" d:DesignWidth="1100" BorderBrush="Black" Background="White"> - + + + + + + diff --git a/View/QueryView.xaml.cs b/View/QueryView.xaml.cs index 312db45..5fd4602 100644 --- a/View/QueryView.xaml.cs +++ b/View/QueryView.xaml.cs @@ -27,5 +27,10 @@ namespace Audit.View { InitializeComponent(); } + + private void DataGrid_SelectionChanged(object sender, SelectionChangedEventArgs e) + { + + } } }