74 lines
3.9 KiB
XML
74 lines
3.9 KiB
XML
<UserControl x:Class="OperationControl.Views.PreparacaoMapaTopView"
|
|
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"
|
|
xmlns:local="clr-namespace:OperationControl.Views"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<Grid Background="#222222" Margin="0">
|
|
<ScrollViewer HorizontalScrollBarVisibility="Auto"
|
|
VerticalScrollBarVisibility="Disabled">
|
|
<StackPanel Orientation="Horizontal" Margin="8,6">
|
|
|
|
<Border Background="#2E2E2E" CornerRadius="8" Padding="12" Margin="4,0">
|
|
<StackPanel>
|
|
<TextBlock Text="Latitude" Foreground="#BFBFBF" FontSize="11"/>
|
|
<TextBlock Text="{Binding LatitudeTexto}" Foreground="White" FontSize="16" FontWeight="SemiBold"/>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
<Border Background="#2E2E2E" CornerRadius="8" Padding="12" Margin="4,0">
|
|
<StackPanel>
|
|
<TextBlock Text="Longitude" Foreground="#BFBFBF" FontSize="11"/>
|
|
<TextBlock Text="{Binding LongitudeTexto}" Foreground="White" FontSize="16" FontWeight="SemiBold"/>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
<Border Background="#2E2E2E" CornerRadius="8" Padding="12" Margin="4,0">
|
|
<StackPanel>
|
|
<TextBlock Text="Altitude" Foreground="#BFBFBF" FontSize="11"/>
|
|
<TextBlock Text="{Binding AltitudeTexto}" Foreground="White" FontSize="16" FontWeight="SemiBold"/>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
<Border Background="#2E2E2E" CornerRadius="8" Padding="12" Margin="4,0">
|
|
<StackPanel>
|
|
<TextBlock Text="Heading" Foreground="#BFBFBF" FontSize="11"/>
|
|
<TextBlock Text="{Binding HeadingTexto}" Foreground="White" FontSize="16" FontWeight="SemiBold"/>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
<Border Background="#2E2E2E" CornerRadius="8" Padding="12" Margin="4,0">
|
|
<StackPanel>
|
|
<TextBlock Text="Fix" Foreground="#BFBFBF" FontSize="11"/>
|
|
<TextBlock Text="{Binding FixTexto}" Foreground="{Binding FixCor}" FontSize="16" FontWeight="Bold"/>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
<Border Background="#2E2E2E" CornerRadius="8" Padding="12" Margin="4,0">
|
|
<StackPanel>
|
|
<TextBlock Text="Precisão" Foreground="#BFBFBF" FontSize="11"/>
|
|
<TextBlock Text="{Binding PrecisaoTexto}" Foreground="White" FontSize="16" FontWeight="SemiBold"/>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
<Border Background="#2E2E2E" CornerRadius="8" Padding="12" Margin="4,0">
|
|
<StackPanel>
|
|
<TextBlock Text="Satélites" Foreground="#BFBFBF" FontSize="11"/>
|
|
<TextBlock Text="{Binding SatelitesTexto}" Foreground="White" FontSize="16" FontWeight="SemiBold"/>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
<Border Background="#2E2E2E" CornerRadius="8" Padding="12" Margin="4,0">
|
|
<StackPanel>
|
|
<TextBlock Text="Idade Correção" Foreground="#BFBFBF" FontSize="11"/>
|
|
<TextBlock Text="{Binding IdadeCorrecaoTexto}" Foreground="White" FontSize="16" FontWeight="SemiBold"/>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
</Grid>
|
|
</UserControl>
|