如何提供父窗口作为模式 - WPF

时间:2017-11-06 19:51:36

标签: wpf window-style

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

我怎样才能制作一个窗口对象,所有窗口都将它用作Pattern。

以下是模式窗口的示例:

<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作为模式。感谢

1 个答案:

答案 0 :(得分:0)

实际上,无需编写父窗口。您可以改用StyleTemplate。它更方便,是Microsoft WPF团队推荐的。

enter image description here

将以下代码写入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来共享这样的“模式”:

<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文件中定义不同类型的样式,然后选择您需要的XxxWindow.xaml中的任何人。