-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sibling.xaml
12 lines (12 loc) · 921 Bytes
/
Sibling.xaml
1
2
3
4
5
6
7
8
9
10
11
12
<Window x:Class="Namanga_Hope_Center.Sibling"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Sibling" Height="350" Width="525">
<Grid>
<ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto" Margin="0">
<DataGrid x:Name="ResultsDataGrid" AutoGenerateColumns="True" Margin="0"/>
</ScrollViewer>
<Button Name="LoadDataButton" Content="Display" Click="LoadButton_Click" VerticalAlignment="Bottom" HorizontalAlignment="Left" Margin="10,0,0,10" Height="40" Width="77" Visibility="Visible" />
<Button Name="BackToDashboardButton" Content="Dashboard" Width="168" Height="40" HorizontalAlignment="Right" VerticalAlignment="Bottom" Click="BackToDashboardButton_Click" Margin="0,0,10,10" Visibility="Visible"/>
</Grid>
</Window>