<Window x:Class="TestViewer.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" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" Title="Exam Database TestViewer" Height="450" Width="800" WindowStartupLocation="CenterScreen" WindowState="Maximized"> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="240"/> <ColumnDefinition Width="*"/> </Grid.ColumnDefinitions> <Grid Grid.Column="0"> <Grid.RowDefinitions> <RowDefinition Height="32"/> <RowDefinition Height="*"/> <RowDefinition Height="32"/> </Grid.RowDefinitions> <ComboBox Grid.Row="0" x:Name="BatchTaskList"/> <ListBox Grid.Row="1" x:Name="ExamList"/> <UniformGrid Grid.Row="2" Columns="3"> <Button Margin="2" Content="<" Click="OnPreviousPageClick"/> <TextBlock x:Name="PageIndex" Text="1" VerticalAlignment="Center" HorizontalAlignment="Center"/> <Button Margin="2" Content=">" Click="OnNextPageClick"/> </UniformGrid> </Grid> <ScrollViewer Grid.Column="1" > <StackPanel x:Name="ExamContent"/> </ScrollViewer> </Grid> </Window>