尝试在资源中设置样式,我将其设置为网格。
<SolidColorBrush x:Key="BackgroundBrush" Color="#5B434343" />
然后我将网格设置为这种风格。
<Style TargetType="Grid">
<Setter Property="Background" Value="{DynamicResource BackgroundBrush}" />
<Setter Property="SnapsToDevicePixels" Value="True" />
</Style>
当我这样做时,它会像我想要的那样覆盖整个网格,但是你无法点击任何控件。这应该是这样的,背景颜色基本上是禁用控件吗?