离开这个问题,我有一个文本框定义如下:
<TextBox>
<TextBox.Background>
<VisualBrush Stretch="Uniform">
<VisualBrush.Visual>
<StackPanel>
<TextBlock Background="Blue" Opacity="0.5" Text="155"/>
</StackPanel>
</VisualBrush.Visual>
</VisualBrush>
</TextBox.Background>
</TextBox>
这导致TextBox
这样的:
现在,如果我删除背景属性,TextBox
看起来像这样:
我想要的是用彩色背景实现第二张图像。例如,在第一张图片中,我希望背景颜色也能填充剩余的空白。