我想在控件DockPanel
底部有一个(不透明度) :宽度应该等于当前宽度。Image
DockPanel
Image
这是 XAML:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid>
<Image Source="..." />
<DockPanel VerticalAlignment="Bottom" LastChildFill="True" Opacity="0.5">
<Button Content="Play" />
<ProgressBar Value="50" Maximum="100" Height="40" />
</DockPanel>
</Grid>
</Window>
使用此 XAML:宽度DockPanel
不等于Image
宽度。DockPanel
宽度设置为宽度Window
。