Newer
Older
Correlator / PipeGallery / View / MainView.xaml
<UserControl x:Class="PipeGallery.View.MainView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
        <Border x:Name="bdrMain">

        </Border>
        <Grid  Width="1366" Height="36" VerticalAlignment="Top">
            
            <TextBlock Name="txtTime" Text="{Binding CurrentTime}" FontSize="18" Foreground="White" Width="auto" Height="auto" Margin="10,0,0,0" HorizontalAlignment="Center" VerticalAlignment="Center"/>
            <TextBlock Text="{Binding Battery,StringFormat= \{0\}%}" FontSize="18" Foreground="White" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="70,0" TextAlignment="Right"/>
            <StackPanel  Orientation="Horizontal" HorizontalAlignment="Right" Margin="10,0">
                <Border BorderBrush="White" BorderThickness="2" Width="48" Height="20" CornerRadius="2">
                    <ProgressBar  Value="{Binding Battery}"  Foreground="White" Background="Transparent" Margin="1" />
                </Border>
                <Border BorderBrush="White" BorderThickness="1" Width="2" Height="10"/>
            </StackPanel>
        </Grid>

        <Border x:Name="bdrPreposition"/>
    </Grid>
</UserControl>