gpt4 book ai didi

c# - 如何在 Windows Phone 8 中设置背景图像?

转载 作者:太空狗 更新时间:2023-10-29 17:29:43 25 4
gpt4 key购买 nike

我是 WP 应用程序的新手,不知道如何在 app.xaml 文件中设置 back-ground 图像Windows Phone 8 应用程序中的整个应用程序。到目前为止,我已经在它上面放置了一些控件,但无法设置背景图像。我看过一些 Material ,但没有用。任何帮助将不胜感激!

最佳答案

您可以添加一个使用图像作为背景的通用网格样式。并将其放在 App.xaml.Resources 下。

<Application.Resources>
<Style x:Key="LayoutGridStyle" TargetType="Grid">
<Setter Property="Background">
<Setter.Value>
<ImageBrush ImageSource="/Assets/bgImage.jpg"/>
</Setter.Value>
</Setter>
</Style>
</Application.Resources>

并将其用于页面的根网格。

<Grid x:Name="LayoutRoot"  Style="{StaticResource LayoutGridStyle}">
//Content goes here
</Grid>

关于c# - 如何在 Windows Phone 8 中设置背景图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22013441/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com