1

我是WP7新手。我想让它半透明,这样整个页面都可以看到。但是,我在互联网上搜索并没有找到如何做到这一点。有人可以为我提供一个示例或链接。提前致谢。

有我的代码:

<phone:PhoneApplicationPage.ApplicationBar>
    <shell:ApplicationBar IsVisible="true" IsMenuEnabled="True" BackgroundColor="FloralWhite" ForegroundColor="LightGreen">
        <shell:ApplicationBarIconButton IconUri="images/light/flag.png" Text="Call Response"/>
        <shell:ApplicationBarIconButton IconUri="images/buttons/call.png" Text="Call"/>
        <shell:ApplicationBarIconButton IconUri="images/buttons/createEvent.png" Text="New Event"/>
        <shell:ApplicationBarIconButton IconUri="images/buttons/eventCompleted.png" Text="Completed"/>

4

1 回答 1

6

我相信你只是设置了不透明度......

Opacity="0.5"

这导致了这个......

在此处输入图像描述

完整的代码...

<Rectangle Height="210" HorizontalAlignment="Left" Margin="66,474,0,0" Name="rectangle1" Stroke="White" StrokeThickness="1" Fill="Chartreuse" VerticalAlignment="Top" Width="134" />

...

<phone:PhoneApplicationPage.ApplicationBar>
    <shell:ApplicationBar IsVisible="True" IsMenuEnabled="True" Opacity=".75" BackgroundColor="Aqua" ForegroundColor="AliceBlue">
        <shell:ApplicationBarIconButton IconUri="/Images/appbar_button1.png" Text="Button 1"/>
        <shell:ApplicationBarIconButton IconUri="/Images/appbar_button2.png" Text="Button 2"/>
于 2012-08-29T22:59:31.890 回答