blob: ccb6618e74c53fe36b3bbb61b9d2bbc6ab433f66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<UserControl x:Class="Tango.PPC.UI.Notifications.NotificationItems.EmptyCartridgesNotificationView"
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:Tango.PPC.UI.Notifications.NotificationItems"
mc:Ignorable="d"
d:DesignHeight="60" d:DesignWidth="400" MinHeight="50" Background="Transparent" Foreground="#FF7777" d:DataContext="{d:DesignInstance Type=local:EmptyCartridgesNotification, IsDesignTimeCreatable=True}">
<Grid Margin="10">
<DockPanel>
<Image Source="/Images/warning-test.png" Margin="5" />
<TextBlock Margin="10 0 0 0" VerticalAlignment="Center" TextWrapping="Wrap" Text="{Binding Message}"></TextBlock>
</DockPanel>
</Grid>
</UserControl>
|