Mercurial > silverbladetech
view delete me/Glimpse/Glimpse Controls/GlimpseViewer.xaml @ 72:177a9d1eba10
Latest version
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Mon, 23 Apr 2012 17:57:21 +0100 |
parents | 3591c26bd63e |
children |
line wrap: on
line source
<UserControl x:Class="Glimpse.GlimpseViewer" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:Glimpse" xmlns:swc="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls"> <Grid x:Name="LayoutRoot" Background="Khaki"> <Grid.Resources> <SolidColorBrush x:Name="noExceptionsBrush" Color="LightGreen" /> <SolidColorBrush x:Name="hasExceptionsBrush" Color="Red" /> </Grid.Resources> <Grid x:Name="layoutInstrumentPanel"> <StackPanel Orientation="Horizontal"> <Grid Margin="7"> <Ellipse x:Name="elpValidationExceptions" Width="40" Height="40" Fill="LightGreen" Stroke="Brown" StrokeThickness="2" /> <TextBlock x:Name="tbValidationExceptions" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="12" FontWeight="Bold" Text="0" ToolTipService.ToolTip="Binding Exception Count" /> </Grid> <Grid Margin="7"> <Ellipse x:Name="elpUnhandledExceptions" Width="40" Height="40" Fill="LightGreen" Stroke="Brown" StrokeThickness="2" /> <TextBlock x:Name="tbUnhandledExceptions" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="12" FontWeight="Bold" Text="0" ToolTipService.ToolTip="Unhandled Exception Count" /> </Grid> <Button x:Name="btnExpand" Margin="7" VerticalAlignment="Center" Content="Expand" /> </StackPanel> </Grid> <Grid x:Name="layoutViewer" Visibility="Collapsed"> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <TextBlock Margin="3.5" VerticalAlignment="Center" FontSize="18" Foreground="DarkGreen" Text="Glimpse Viewer" /> <Button x:Name="btnContract" Margin="7" HorizontalAlignment="Right" VerticalAlignment="Center" Content="Contract" /> <swc:TabControl Grid.Row="1" Width="690" Height="390" Background="Khaki" SelectedIndex="2"> <swc:TabItem Header="Exceptions"> <local:ExceptionsViewer /> </swc:TabItem> <swc:TabItem Header="Bindings with no Source"> <local:BrokenBindingsViewer /> </swc:TabItem> </swc:TabControl> </Grid> </Grid> </UserControl>