-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.xaml
16 lines (16 loc) · 1.01 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Window x:Class="TroyTrivia.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
Title="MainWindow" Height="785.1" Width="1329">
<Grid>
<DataGrid x:Name="scoreboardDataGrid" HorizontalAlignment="Left" Margin="952,20,0,0" VerticalAlignment="Top" Height="552" Width="346" ItemsSource="{Binding }" SelectionChanged="scoreboardDataGrid_SelectionChanged">
<DataGrid.Columns>
<DataGridTextColumn Header="Team" Binding="{Binding Key}" />
<DataGridTextColumn Header="Score" Binding="{Binding Value}" />
</DataGrid.Columns>
</DataGrid>
<Button x:Name="refreshScoreboardButton" Content="Refresh Scoreboard" HorizontalAlignment="Left" Margin="806,20,0,0" VerticalAlignment="Top" Width="129" Click="refreshScoreboardButton_Click"/>
</Grid>
</Window>