在 Windows Phone 7.5 背景上平铺(重复)图像

发布于 2024-12-13 01:48:28 字数 86 浏览 0 评论 0原文

我需要在 Windows Phone 7.5 背景上重复或平铺单个图像(大小 9x9)。

这怎么能做到呢?我没有使用 Bing 找到任何内容。

I need to repeat or tile a single image (size 9x9) across the Windows Phone 7.5 background.

How can this be done? I haven't found anything using Bing.

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

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

发布评论

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

评论(1

七色彩虹 2024-12-20 01:48:28

在 WPF 中,您通常会按照 这里。但不幸的是,在 WP7 中这是不可能的。因此,实现这一目标的唯一方法是自己编写一些东西或使用组件。

这篇博文介绍了一个组件。它基本上是一个面板,一遍又一遍地填充相同的图像。文章末尾有下载链接。下载 zip 文件,解压并将 TilePanel.cs 添加到您的项目中。

然后,您可以在 XAML 中按如下方式使用它:

<local:TilePanel x:Name="pnlTile" TileWidth="62" TileHeight="62">
    <local:TilePanel.Image>
        <ImageBrush ImageSource="ApplicationIcon.png" />
    </local:TilePanel.Image>
</local:TilePanel>

不要忘记添加命名空间:

xmlns:local="clr-namespace:WiredPrairie.Controls"

面板将填充 XAML 中指定的图像。根据需要调整图像和大小。

In WPF you normally would do it with a tiled Grid.Background as described here. But in WP7 this unfortunately is not possible. So the only ways of achieving this are writing something yourself or using a component.

One component is presented in this blog post. It is basically a panel filling itself with the same image over and over again. At the end of the article there is a download link. Download the zip, unzip it and add TilePanel.cs to your project.

Then you can use it as follows in your XAML:

<local:TilePanel x:Name="pnlTile" TileWidth="62" TileHeight="62">
    <local:TilePanel.Image>
        <ImageBrush ImageSource="ApplicationIcon.png" />
    </local:TilePanel.Image>
</local:TilePanel>

Don't forget to add the namespace:

xmlns:local="clr-namespace:WiredPrairie.Controls"

The panel will be filled with the image specified in your XAML. Adjust image and size as needed.

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