阻止WPF控件继承windowstyle

时间:2015-09-07 10:28:23

标签: c# wpf xaml

如何阻止我的第三方控件继承我的主窗口样式?我使用的工具有自己的窗口,如果我定义的窗口样式不是默认窗口,它将无法正确显示。

<Window x:Class="myApp.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="myApp" Height="350" Width="525"
    WindowStyle="none" AllowsTransparency="True" ResizeMode="CanResizeWithGrip">
<Grid>
    <tool:thridPartyTool/>
</Grid>
</Window>

1 个答案:

答案 0 :(得分:1)

像这样使用InheritanceBehavior

this.InheritanceBehavior = InheritanceBehavior.SkipAllNow;