seb-win-refactoring/SafeExamBrowser.ResetUtility/UserInterface/MainWindow.xaml

18 lines
1.2 KiB
XML

<Window x:Class="SafeExamBrowser.ResetUtility.UserInterface.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="Reset Utility" Icon="..\Images\SafeExamBrowser.ico" Height="750" Width="1000" ResizeMode="NoResize">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="150" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Image Grid.Row="0" Source="..\Images\SafeExamBrowser.png" HorizontalAlignment="Center" />
<TextBlock x:Name="VersionInfo" Grid.Row="0" Panel.ZIndex="2" Foreground="Gray" Margin="520,75,350,10" TextWrapping="Wrap" Text="Version information goes here..." />
<ScrollViewer Grid.Row="1" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">
<TextBlock x:Name="Console" Background="Black" Foreground="White" FontFamily="Consolas" Padding="5" />
</ScrollViewer>
</Grid>
</Window>