4e22e89d6e
Also, display a dialog while loading Fixes #10
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<Window x:Class="xunit.runner.wpf.LoadingDialog"
|
|
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"
|
|
xmlns:local="clr-namespace:xunit.runner.wpf"
|
|
mc:Ignorable="d"
|
|
Title="Discovering Tests"
|
|
SizeToContent="WidthAndHeight"
|
|
ResizeMode="NoResize"
|
|
ShowInTaskbar="False"
|
|
MinHeight="100"
|
|
MinWidth="300"
|
|
WindowStartupLocation="CenterOwner">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Text="Discovering tests in:"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Grid.Row="0"/>
|
|
<TextBlock Text="{Binding Path=AssemblyFileName, RelativeSource={RelativeSource AncestorType=Window}}"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Grid.Row="1"/>
|
|
</Grid>
|
|
</Window>
|