You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.3 KiB
31 lines
1.3 KiB
<UserControl x:Class="ICSharpCode.Profiler.Controls.ExtendedTimeLineControl" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:local="clr-namespace:ICSharpCode.Profiler.Controls"> |
|
<DockPanel> |
|
<DockPanel Margin="3,0"> |
|
<TextBlock Text="Performance Counters" DockPanel.Dock="Top" /> |
|
<ListBox x:Name="perfCounterList" SelectionChanged="PerfCounterListSelectionChanged" /> |
|
</DockPanel> |
|
<Grid Margin="3,0"> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="20" /> |
|
<RowDefinition Height="20" /> |
|
<RowDefinition Height="100" /> |
|
</Grid.RowDefinitions> |
|
<TextBlock Text="Time" /> |
|
<TextBlock Grid.Row="1" Text="Events" /> |
|
<DockPanel Grid.Row="2"> |
|
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal"> |
|
<TextBlock Text="Graph " /> |
|
<TextBlock x:Name="maxLabel" HorizontalAlignment="Right" /> |
|
</StackPanel> |
|
<TextBlock x:Name="minLabel" DockPanel.Dock="Bottom" VerticalAlignment="Bottom" HorizontalAlignment="Right" /> |
|
<TextBlock x:Name="unitLabel" VerticalAlignment="Center" HorizontalAlignment="Right" /> |
|
</DockPanel> |
|
</Grid> |
|
<ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Disabled" Margin="3,0"> |
|
<local:TimeLineControl x:Name="timeLine" /> |
|
</ScrollViewer> |
|
</DockPanel> |
|
</UserControl> |