有没有办法在 Silverlight/WP7 上的堆栈面板或网格后面添加背景图像?
现在我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们使用
Grid
的背景来显示StackPanel
内容后面的图像。We are using the background of the
Grid
to show an image behind the contents of theStackPanel
.