37 lines
1.7 KiB
XML
37 lines
1.7 KiB
XML
<Window x:Class="Anrufmonitor.App.CallPopupWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Anrufmonitor"
|
|
Width="360" Height="140"
|
|
WindowStyle="None"
|
|
AllowsTransparency="True"
|
|
Background="Transparent"
|
|
ShowInTaskbar="False"
|
|
Topmost="True"
|
|
ResizeMode="NoResize"
|
|
SizeToContent="Manual">
|
|
<Border Background="#FF1F2430" CornerRadius="10" BorderBrush="#FF3A4152" BorderThickness="1">
|
|
<Grid Margin="16">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Grid.Row="0" Text="Eingehender Anruf" Foreground="#FF8CA0C4" FontSize="12" FontWeight="SemiBold" />
|
|
|
|
<TextBlock Grid.Row="1" x:Name="NameText" Text="Unbekannt" Foreground="White" FontSize="22" FontWeight="Bold"
|
|
Margin="0,4,0,0" TextTrimming="CharacterEllipsis" />
|
|
|
|
<StackPanel Grid.Row="2" Orientation="Horizontal" Margin="0,4,0,0">
|
|
<TextBlock x:Name="CompanyText" Foreground="#FFB6C0D6" FontSize="14" Margin="0,0,8,0" />
|
|
<TextBlock x:Name="NumberText" Foreground="#FF7C879C" FontSize="14" />
|
|
</StackPanel>
|
|
|
|
<Button Content="✕" HorizontalAlignment="Right" VerticalAlignment="Top"
|
|
Width="24" Height="24" Padding="0" Margin="0,-16,-16,0"
|
|
Background="Transparent" BorderThickness="0" Foreground="#FF7C879C"
|
|
Click="OnCloseClicked" />
|
|
</Grid>
|
|
</Border>
|
|
</Window>
|