我有用于搜索的文本框,我希望在其中包含提示文本以提示用户进行搜索以及放大镜图标。我正在使用一种VisualBrush
样式,我想要最左边的标签和最右边的图像,但我无法获得VisualBrush
填充整个文本框的内容。它们要么在左边粘在一起,要么在右边粘在一起,这取决于我AlignmentX
在VisualBrush
. 我尝试过使用StackPanel
, DockPanel
,Grid
但它们都不会填满整个文本框,让我在文本框的两端都有元素。
<VisualBrush x:Key="CueBannerBrush"
AlignmentX="Left"
AlignmentY="Center"
Stretch="None">
<VisualBrush.Visual>
<DockPanel HorizontalAlignment="Stretch">
<Label Content="Begin typing to search"
Foreground="LightGray"
DockPanel.Dock="Left" />
<Image Source="/WPF;component/Icons/32/Modern3D/objects/magnifier.png"
Height="20"
DockPanel.Dock="Right" />
</DockPanel>
</VisualBrush.Visual>
</VisualBrush>
产生这个输出:
关于如何让画笔的孩子填充整个文本框并将提示文本与放大镜图标分开的任何建议?