我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>
它在设计器中的外观以及它的真实外观: