有没有办法在 Silverlight/WP7 上的堆栈面板或网格后面添加背景图像?

发布于 2025-01-08 11:27:36 字数 178 浏览 0 评论 0原文

现在我使用 StackPanel,其中有一个小图像,但我希望在该图像后面居中放置另一个图像。我不介意图像是否填充所有 StackPanel 或 Grid。我可以将其调整为所需的正确尺寸。

这可能吗?

或者是否需要在运行时在另一张图像上绘制图像?如果是这样的话,对于 Windows Phone 来说不是很慢吗?

Right now I use a StackPanel where I have a small image but I want to have another image behind this image centered. I don't mind if the image fills all of the StackPanel or the Grid. I can make it the right size required for this.

Is this possible?

Or does one need to draw the image on another image at runtime? If so, would this not be slow for a Windows Phone?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧竹 2025-01-15 11:27:36
<Grid>
    <Grid.Background>
        <ImageBrush ImageSource="../MyImages/MyFile.png" />
    </Grid.Background>
    <StackPanel>
        <!-- other contents -->
    </StackPanel>
</Grid>

我们使用Grid 的背景来显示StackPanel 内容后面的图像。

<Grid>
    <Grid.Background>
        <ImageBrush ImageSource="../MyImages/MyFile.png" />
    </Grid.Background>
    <StackPanel>
        <!-- other contents -->
    </StackPanel>
</Grid>

We are using the background of the Grid to show an image behind the contents of the StackPanel.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文