blob: 1c80f11ec79d0d0282479969d755f3535e1d116b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<Window x:Class="Notifications.Wpf.NotificationsOverlayWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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"
xmlns:controls1="clr-namespace:Notifications.Wpf.Controls"
mc:Ignorable="d"
Title="ToastWindow"
Background="Transparent"
ShowInTaskbar="False"
WindowStyle="None"
AllowsTransparency="True"
Topmost="True"
ShowActivated="False"
d:DesignWidth="900"
d:DesignHeight="600">
<controls1:NotificationArea Position="BottomRight" Margin="8"/>
</Window>
|