GTPCorrgir/notificacion.xaml

15 lines
628 B
XML

<Window x:Class="GTPCorrgir.notificacion"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="100" Width="300"
Topmost="True" ShowInTaskbar="False"
WindowStyle="None" AllowsTransparency="True"
Background="Transparent">
<Border CornerRadius="10" Background="#AAF0F0F0">
<StackPanel>
<TextBlock x:Name="TitleText" FontSize="16" FontWeight="Bold" Margin="10"/>
<TextBlock x:Name="MessageText" FontSize="14" Margin="10"/>
</StackPanel>
</Border>
</Window>