Skip to content

Commit

Permalink
chore: Final touches
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinZikmund committed Jan 15, 2025
1 parent 9c047de commit aa08ba3
Showing 1 changed file with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
d:DesignHeight="300"
d:DesignWidth="400">

<Grid>
<Grid RowSpacing="8">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="0" x:Name="failedTestDetailsRow" />
Expand All @@ -23,7 +23,7 @@
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<StackPanel Grid.Row="0">
<StackPanel Grid.Row="0" Spacing="4">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
Expand All @@ -49,7 +49,7 @@
Margin="0,0,4,0">
<StackPanel Orientation="Horizontal" Spacing="8">
<SymbolIcon Symbol="Stop" />
<TextBlock Text="Run" />
<TextBlock Text="Stop" />
</StackPanel>
</Button>
<TextBox
Expand Down Expand Up @@ -93,25 +93,20 @@
<TextBlock x:Name="runStatus" Text="Not initialized" />
</StackPanel>

<StackPanel Orientation="Horizontal" Spacing="4">
<StackPanel Orientation="Horizontal" Spacing="8">
<StackPanel.Resources>
<Style TargetType="TextBlock">
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Width" Value="40" />
</Style>
<Style TargetType="FontIcon">
<Setter Property="VerticalAlignment" Value="Center" />
</Style>
</StackPanel.Resources>

<FontIcon Glyph="&#xE819;" />
<TextBlock
x:Name="runTestCount"
Text="None" />

<FontIcon Glyph="&#xEE35;" Foreground="DarkGray" />
<FontIcon Glyph="&#xE768;" />
<TextBlock
x:Name="ignoredTestCount"
Foreground="DarkGray"
x:Name="runTestCount"
Text="None" />

<FontIcon Glyph="&#xE73E;" Foreground="DarkGreen" />
Expand All @@ -121,11 +116,16 @@
Text="None" />

<FontIcon Glyph="&#xE711;" Foreground="Red" />

<TextBlock
x:Name="failedTestCount"
Foreground="Red"
Text="None" />

<FontIcon Glyph="&#xEE35;" Foreground="DarkGray" />
<TextBlock
x:Name="ignoredTestCount"
Foreground="DarkGray"
Text="None" />
</StackPanel>
</StackPanel>

Expand Down

0 comments on commit aa08ba3

Please sign in to comment.