如何在WPF中重用自定义设计的窗口?

时间:2017-04-26 15:24:12

标签: c# wpf xaml mvvm

我有一个自定义设计的窗口,如下所示。

Custom Window

以下是我的XAML设计,为简单起见省略了样式。

<Window x:Class="CustomWindowBase.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
            xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
            xmlns:local="clr-namespace:CustomWindowBase"
            mc:Ignorable="d"
            Title="CustomWindow" Height="600" Width="870" WindowStartupLocation="CenterScreen"
            ResizeMode="NoResize" AllowsTransparency="True" WindowStyle="None" Background="Transparent">
    <Border Style="{StaticResource MainWindowBorderStyle}">
        <Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="35"/>
                <RowDefinition Height="590*"/>
            </Grid.RowDefinitions>

            <Border Grid.Row="0" Style="{StaticResource TitleBarBorderStyle}">
                <Grid>
                    <TextBlock Style="{StaticResource TitleStyle}" Text="Custom Window"/>
                    <Button x:Name="BtnClose" Style="{StaticResource CloseButtonStyle}"/>
                </Grid>
            </Border>

            <Grid Grid.Row="1">
                <!-- Different User Control Here -->
            </Grid>
        </Grid>
    </Border>
</Window>

此窗口背后的代码有两个事件支持关闭/拖动操作。

如何将此shell重用于我的应用程序可能打开的每个其他窗口,有点像可以继承的基类?

如果可能的话,我不想在后面的代码中做很多事情,比如实例化这个窗口shell的实例并用另一个用户控件分配它的内容。

非常感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

将XAML内容放入ControlTemplate

对于<!-- Different User Control Here -->部分,请插入<ContentPresenter />。它知道该怎么做。 它只知道。

使用Style应用模板和其他所需的属性值。

的App.xaml

<ControlTemplate x:Key="MyWindowTemplate" TargetType="Window">
    <Border Style="{StaticResource MainWindowBorderStyle}">
        <Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="35"/>
                <RowDefinition Height="590*"/>
            </Grid.RowDefinitions>

            <Border Grid.Row="0" Style="{StaticResource TitleBarBorderStyle}">
                <Grid>
                    <TextBlock Style="{StaticResource TitleStyle}" Text="Custom Window"/>
                    <Button x:Name="BtnClose" Style="{StaticResource CloseButtonStyle}"/>
                </Grid>
            </Border>

            <Grid Grid.Row="1">
                <ContentPresenter
                    />
            </Grid>
        </Grid>
    </Border>
</ControlTemplate>

<Style TargetType="Window" x:Key="MyWindowStyle">
    <Setter Property="Template" Value="{StaticResource MyWindowTemplate}" />
    <Setter Property="Height" Value="600" />
    <Setter Property="Width" Value="870" />
    <Setter Property="ResizeMode" Value="NoResize" />
    <Setter Property="AllowsTransparency" Value="True" />
    <Setter Property="WindowStyle" Value="None" />
    <Setter Property="Background" Value="Transparent" />
</Style>

用法:

<Window x:Class="CustomWindowBase.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:CustomWindowBase"
    mc:Ignorable="d"
    Style="{StaticResource MyWindowStyle}" 
    WindowStartupLocation="CenterScreen"
    >
    <!-- This content will be displayed in the ContentPresenter. -->
    <StackPanel Orientation="Vertical">
        <Label>Blah blah</Label>
        <ComboBox ItemsSource="{Binding SomeVMThing}" />
    </StackPanel>
</Window>

可悲的是,您无法在样式中设置WindowStartupLocation,因为它不是DependencyProperty。

你提到了一些关键按钮事件。我不确定你现在如何设置它们,但是会有一种方法。

答案 1 :(得分:0)

如果我找对你,那就没事了。使用

从窗口外部调用它

new MainWindow().ShowDialog();