74 lines
3.1 KiB
XML
74 lines
3.1 KiB
XML
<UserControl x:Class="OperationControl.Views.Operacao.OperacaoTopView"
|
|
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.Operacao"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="70" d:DesignWidth="1200">
|
|
<Border Background="{Binding CorFundo}"
|
|
CornerRadius="10"
|
|
Padding="14,10"
|
|
Margin="10,8,10,6">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="260"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="160"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- Contexto -->
|
|
<Border Grid.Column="0"
|
|
Background="#22000000"
|
|
CornerRadius="8"
|
|
Padding="12,8"
|
|
Margin="0,0,12,0">
|
|
<StackPanel Orientation="Horizontal" VerticalAlignment="Center">
|
|
<TextBlock Text="Selecionado: "
|
|
Foreground="#D8D8D8"
|
|
FontSize="14"
|
|
VerticalAlignment="Center"/>
|
|
<TextBlock Text="{Binding ContextoSelecionado}"
|
|
Foreground="{Binding CorTexto}"
|
|
FontSize="16"
|
|
FontWeight="Bold"
|
|
VerticalAlignment="Center"/>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
<!-- Mensagem principal -->
|
|
<Border Grid.Column="1"
|
|
Background="#16000000"
|
|
CornerRadius="8"
|
|
Padding="14,8"
|
|
Margin="0,0,12,0">
|
|
<TextBlock Text="{Binding MensagemStatus}"
|
|
Foreground="{Binding CorTexto}"
|
|
FontSize="17"
|
|
FontWeight="SemiBold"
|
|
TextWrapping="Wrap"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
TextAlignment="Center"/>
|
|
</Border>
|
|
|
|
<!-- Badge -->
|
|
<Border Grid.Column="2"
|
|
Background="{Binding CorBadge}"
|
|
CornerRadius="18"
|
|
Padding="12,8"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Center"
|
|
MinWidth="120">
|
|
<TextBlock Text="{Binding BadgeTexto}"
|
|
Foreground="Black"
|
|
FontWeight="Bold"
|
|
FontSize="14"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
TextAlignment="Center"/>
|
|
</Border>
|
|
</Grid>
|
|
</Border>
|
|
</UserControl>
|