App.xaml
次のようなウィンドウのスタイルを設定しています。
<Application x:Class="MusicRepo_Importer.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:System="clr-namespace:System;assembly=mscorlib" StartupUri="TestMaster.xaml">
<Application.Resources>
<Style TargetType="Window">
<Setter Property="WindowStyle" Value="None"></Setter>
</Style>
</Application.Resources>
</Application>
基本的に、すべてのウィンドウの WindowStyle のプロパティ値を None に設定する必要があります (デフォルトのウィンドウ フレームと境界線を削除するため)。しかし、それは機能していません。
ここで何が欠けていますか?