Form1.cs
-------
private void Form1_Load(object sender, EventArgs e)
{
// Full Screen にする
this.Left = 0;
this.Top = 0;
Rectangle rec = Screen.PrimaryScreen.Bounds;
this.Height = rec.Height;
this.Width = rec.Width;
}
private void button1_Click(object sender, EventArgs e)
{
// WPF のウィンドウを呼び出す
var wnd = new MainWindow();
wnd.ShowDialog();
}
-------
ビルド後、アプリケーションの実行体ファイル(.exe)を右クリックし、
[プロパティ]>[互換性]>[高DPI設定では画面のスケーリングを無効にする]にチェックを入れる。
(デバッグ実行ではなく)実行体ファイルから直接起動する。
で回避出来ませんか?