gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 10:21:24 25 4
gpt4 key购买 nike

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

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>

该窗口后面的代码有两个事件,它们支持关闭/拖动 Action 。

我如何在我的应用程序可能打开的每个其他窗口中重用此Shell,就像可以继承的基类一样?

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

非常感谢您的帮助。

最佳答案

将XAML内容放入ControlTemplate中。

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

应用带有Style的模板以及其他所需的属性值。

关于c# - 如何在WPF中重用自定义设计的窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43638385/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com