Skip to content

Commit b1afd60

Browse files
committed
Interim commit
1 parent da952f1 commit b1afd60

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

RetailCoder.VBE/UI/UnitTesting/TestExplorerControl.xaml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
<BitmapImage x:Key="SettingsImage" UriSource="../../Resources/gear.png" />
1919

2020
<local:TestOutcomeImageSourceConverter x:Key="OutcomeIconConverter" />
21+
2122
<local:TestResultToOutcomeTextConverter x:Key="OutcomeTextConverter" />
23+
2224
<BooleanToVisibilityConverter x:Key="BoolToVisibility"/>
2325
<converters:InvertBoolValueConverter x:Key="InvertBoolValue" />
2426

@@ -270,7 +272,9 @@
270272
<componentModel:SortDescription PropertyName="Result.Outcome" />
271273
</CollectionViewSource.SortDescriptions>
272274
<CollectionViewSource.GroupDescriptions>
275+
<!--
273276
<PropertyGroupDescription PropertyName="Result" Converter="{StaticResource OutcomeTextConverter}" />
277+
-->
274278
</CollectionViewSource.GroupDescriptions>
275279
</CollectionViewSource>
276280
<SolidColorBrush x:Key="ToolBarToggleButtonVerticalBackground" Color="#FFEEF5FD"/>
@@ -455,14 +459,14 @@
455459
</Style.Triggers>
456460
</Style>
457461
</UserControl.Resources>
458-
462+
459463
<Grid>
460464
<Grid.RowDefinitions>
461465
<RowDefinition Height="30"/>
462466
<RowDefinition Height="10"/>
463467
<RowDefinition Height="*" />
464468
</Grid.RowDefinitions>
465-
469+
466470
<Border Grid.Row="0" Grid.RowSpan="3" Background="#FFEEF5FD" />
467471

468472
<ToolBarTray Grid.Row="0" IsLocked="True">
@@ -586,6 +590,7 @@
586590
<Border Grid.Row="2" Padding="2">
587591
<ScrollViewer VerticalScrollBarVisibility="Auto">
588592
<Grid>
593+
589594
<controls:GroupingGrid ItemsSource="{Binding Source={StaticResource ResultsByOutcome}}"
590595
SelectedItem="{Binding SelectedTest}"
591596
ShowGroupingItemCount="True"
@@ -605,7 +610,7 @@
605610
<DataGridTextColumn Header="{Resx ResxName=Rubberduck.UI.RubberduckUI, Key=TestExplorer_Duration}" Binding="{Binding Result.Duration, StringFormat={}{0}ms}" />
606611
</DataGrid.Columns>
607612
</controls:GroupingGrid>
608-
613+
<!--
609614
<controls:GroupingGrid ItemsSource="{Binding Source={StaticResource ResultsByModule}}"
610615
SelectedItem="{Binding SelectedTest}"
611616
ShowGroupingItemCount="True"
@@ -624,9 +629,10 @@
624629
<DataGridTextColumn Header="{Resx ResxName=Rubberduck.UI.RubberduckUI, Key=TestExplorer_Duration}" Binding="{Binding Result.Duration, StringFormat={}{0}ms}" />
625630
</DataGrid.Columns>
626631
</controls:GroupingGrid>
632+
-->
627633
</Grid>
628634
</ScrollViewer>
629635
</Border>
630636
<controls:BusyIndicator Grid.Row="2" Width="120" Height="120" Visibility="{Binding Model.IsBusy, Converter={StaticResource BoolToVisibility}}" />
631637
</Grid>
632-
</UserControl>
638+
</UserControl>

0 commit comments

Comments
 (0)