質問させてください。
以下の画像のようにウィンドウの表示がSizeToContentの値によっておかしくなる場合があるのですが、
対策方法など分かる方がいらっしゃれば教えていただけないでしょうか。
https://dotup.org/uploda/dotup.org1526890.png

VSのバージョンは15.6.7、ターゲットフレームワークは4.7.1、
実行環境は Windows 10 で「拡大縮小とレイアウト」の設定は100%です。
XAMLは以下の通りです。どうぞよろしくお願いいたします。

<Window
  x:Class="SizeToContentIssue.MainWindow"
  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";
  mc:Ignorable="d"
  Width="213" Height="55"
  SizeToContent="Width"><!--←Width を Manual に書き換えると正常に表示される-->
  <Grid>
    <TextBlock>
      <Run Text="{Binding Width, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}}}"/>
      x
      <Run Text="{Binding Height, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}}}"/>
      縦棒が入ったり入らなかったり→
    </TextBlock>
  </Grid>
</Window>