我刚刚开始使用WPF,所以这可能是一个非常愚蠢的问题。尽管如此,我还没有想到这一点,所以我们走了:
我定义了一个简单的自定义控件。现在,它只是控件内的标签,我想垂直和水平对齐标签中心。这是我到目前为止的标记:
<UserControl x:Class="WPFTest.Controls.WindowTitle"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="25" d:DesignWidth="300"
x:Name="uc">
<Grid>
<Label Content="{Binding Path=Content, RelativeSource={RelativeSource TemplatedParent}}" VerticalAlignment="Center" HorizontalAlignment="Center" />
</Grid>
</UserControl>
在主窗口中,我有一个像这样的DockPanel:
<Window x:Class="WPFTest.Sandbox"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Controls="clr-namespace:BrewDay.Controls"
Title="Sandbox" Height="300" Width="300">
<DockPanel>
<Controls:WindowTitle DockPanel.Dock="Top" Content="Title Bar" Background='#FF232323' Foreground="White" Height="25"/>
</DockPanel>
</Window>
令人沮丧的是,当我在窗口中使用一个带有Height和VerticalAlignment以及HorizontalAlignment的简单标签时,一切看起来都像我期望的那样。出于某种原因,当我把它拿到一个单独的控件中时,一切都停止工作,我无法弄清楚原因。
编辑:以下是控件当前在我的应用程序中呈现的方式:
我试图将TextField放在包含控件的指定矩形(灰色区域)的中间。标签的背景(灰色)占据预期区域(窗口的整个宽度高55像素)但文本本身不在该区域的中心这一事实让我感到困惑。
答案 0 :(得分:0)
你的部分问题是你已经将它集中在你的控件中,但是你没有控制中心,你的控件也可以使用VerticalContentAlignment和HorizontalContentAlignment,这将导致你的UserControl的内容对齐方式你想要的。我对你如何看待它有点困惑,因为你告诉它停靠在DockPanel的顶部。但看看这是否是你想要的。
<Controls:WindowTitle DockPanel.Dock="Top" VerticalAlignment="Top" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Content="Title Bar" Background='#FF232323' Foreground="White" Height="25"/>