CustomControl
Window をベースに新規作成しましたControl
。
コントロールを使用すると、デザイナー モードに表示されず、代わりに既定のウィンドウ スタイルが使用されます。
既定のウィンドウ スタイルではなく、自分のウィンドウ スタイルを表示するようにデザイナーに強制するにはどうすればよいですか?
私の MainWindow.xaml:
<CustomWindow:MetroWindow x:Class="Testz.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:CustomWindow="clr-namespace:MetroWindow;assembly=MetroWindow"
Title="MainWindow" Height="350" Width="525" BorderBrush="Red">
<Grid>
</Grid>
</CustomWindow:MetroWindow>
デザイナーでの外観と実際の外観: