如何提供 Parent Window 作为模式 - WPF

How could providing Parent Window as Pattern - WPF

考虑到我的项目有 4 个 Window,我尝试提供特定的关闭按钮和一个标题

我如何制作 window 的 object 并且所有 window 都将其用作模式。

这是我们的模式示例 window:

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
        WindowStyle="None" AllowsTransparency="True" >
<Grid>
<Button Content="Close" Height="40" VerticalAlignment="Top" HorizontalAlignment="Right"/>
<TextBlock VerticalAlignment="Top" HorizontalAlignment="Center" X:Name="WindowTitle/>
</Grid>
</Window>

如何将我所有的 Window 用作模式。谢谢

其实不用写父window。您可以改用 StyleTemplate。更方便,微软WPF团队推荐。

将下面的代码写入你的App.xaml你会得到上面的图片:

<Application x:Class="Walterlv.Demo.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             .........>
    <Application.Resources>
        <Style x:Key="Style.Window.Default" TargetType="Window">
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="Window">
                        <Grid Background="{TemplateBinding Background}">
                            <Grid.RowDefinitions>
                                <RowDefinition Height="40"/>
                                <RowDefinition/>
                            </Grid.RowDefinitions>
                            <Button Grid.Row="0" Content="Close" Height="40" VerticalAlignment="Top" HorizontalAlignment="Right"/>
                            <TextBlock Grid.Row="0" VerticalAlignment="Top" HorizontalAlignment="Center"
                                       Text="{TemplateBinding Title}"/>
                            <Border Grid.Row="1" BorderThickness="{TemplateBinding BorderThickness}"
                                    BorderBrush="{TemplateBinding BorderBrush}">
                                <!-- This is the container to host your Window.Content -->
                                <ContentPresenter/>
                            </Border>
                        </Grid>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>
    </Application.Resources>
</Application>

而且你只能用一个属性Style来分享这样一个"pattern":

<Window x:Class="Walterlv.Demo.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Style="{StaticResource Style.Window.Default}">

</Window>

您可以在 App.xaml 文件中定义不同类型的样式,并且 select 您的 XxxWindow.xaml 中的任何人都需要。