通知ポップアップを表示する必要があるプロジェクトに取り組んでいます。
http://youtu.be/fweLIzpW6I0?t=52s
ここに、通知を表示する方法が表示されます。Microsoft Security Essentials は、拡大するポップアップ ウィンドウを使用します。私はそのようにする方法を見つけることができません。
これはウィンドウです:
<Window x:Class="AlertDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Notification"
Height="196" Width="400"
ResizeMode="NoResize"
ShowInTaskbar="False"
Topmost="True"
HorizontalAlignment="Right"
VerticalAlignment="Bottom" SizeToContent="WidthAndHeight" Loaded="Window_Loaded" WindowStyle="ToolWindow">
<Grid Name="contentGrid">
</Grid>
</Window>