mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
30 lines
926 B
XML
30 lines
926 B
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d" d:DesignWidth="400" d:DesignHeight="150"
|
|
x:Class="Observatory.UI.Views.NotificationView"
|
|
ExtendClientAreaToDecorationsHint="True"
|
|
Title="Notification"
|
|
Width="400" Height="150"
|
|
Topmost="True">
|
|
<StackPanel DataContext="{Binding Notification}">
|
|
<TextBlock
|
|
Padding="10"
|
|
FontWeight="Bold"
|
|
FontSize="30"
|
|
FontFamily="Ebrima"
|
|
Text="{Binding Title}">
|
|
Title
|
|
</TextBlock>
|
|
<TextBlock
|
|
Padding="20,0"
|
|
FontWeight="Normal"
|
|
FontSize="20"
|
|
FontFamily="Ebrima"
|
|
Text="{Binding Detail}">
|
|
Detail
|
|
</TextBlock>
|
|
</StackPanel>
|
|
</Window>
|