C # WPF tamanho diferente do IDE após a depuração?

Estou tendo um problema com aparência diferente emBlend/VS2012 IDE e emDebugging. EmIDE, aRectangle está no centro, mas quando é compilado ou depurado, o tamanho da margem é diferente. Na minha opinião, isso ocorre porque o tamanho da borda da janela é diferente. Eu realmente quero consertar esse problema. Alguma sugestão?

Obrigado.

XAML

<Window x:Class="WpfApplication2.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="202" Width="194">
<Grid HorizontalAlignment="Left" Height="171" VerticalAlignment="Top" Width="186">
    <Rectangle Fill="#FFF4F4F5" HorizontalAlignment="Left" Height="151" Margin="10,10,0,0" Stroke="Black" VerticalAlignment="Top" Width="166"/>
</Grid>

EditadoXAML código:

<Window x:Class="WpfApplication2.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="202" Width="194">
<Grid HorizontalAlignment="Left" Height="171" VerticalAlignment="Top" Width="186">
    <Rectangle Fill="#FFF4F4F5" HorizontalAlignment="Center" Height="151" Margin="10" Stroke="Black" VerticalAlignment="Center" Width="166"/>
</Grid>

Resultado é o mesmo. Esse problema do meu PC?

questionAnswers(1)

yourAnswerToTheQuestion