代码之家  ›  专栏  ›  技术社区  ›  Shubham Sahu

超宽带中的半透明背景

  •  -1
  • Shubham Sahu  · 技术社区  · 7 年前

    我想在列表框中使用半透明背景 Background="{StaticResource PhoneSemitransparentBrush}" 在windows phone 8应用程序中。 但这种半透明画笔在UWP中不可用,UWP中相同半透明背景的任何替代画笔?

    2 回复  |  直到 7 年前
        1
  •  4
  •   Vijay Nirmal    7 年前

    方法1:

    Opacity 用于背景色

    <ListView>
        <ListView.Background>
            <SolidColorBrush Color="Red" Opacity="0.5"/>
        </ListView.Background>
    </ListView>
    

    方法2:

    <ListView Background="#7FFF0000"/>
    

    可以在“属性”面板中使用Alpha通道选择颜色

    A

        2
  •  3
  •   Jessica    7 年前

    你能找到的衣柜可能来自 SystemControlBackgroundAltMediumBrush SystemAltMediumColor 其中alpha通道为60%,而手机刷为66.7%。