ウィンドウ テンプレートをより単純なものに置き換えるだけです。
<Window x:Class="WpfApplication11.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525"
WindowStyle="None" AllowsTransparency="True">
<Window.Template>
<ControlTemplate TargetType="Window">
<Grid Background="Blue">
<ContentPresenter ContentSource="Content"/>
</Grid>
</ControlTemplate>
</Window.Template>
</Window>
または
MahApps.Metroを使用する
編集:これは と でのみ機能しWindowStyle="None"
ますAllowsTransparency="True"