从c#代码设置全景视图的WP7背景图像

发布于 2024-11-08 06:25:17 字数 487 浏览 0 评论 0原文

我想通过代码更改 WP7 中全景视图的背景图像。

首先从 XAML 开始:-

<controls:Panorama Title="earth" Name="PanoObj">
   <controls:Panorama.Background>
      <ImageBrush ImageSource="background.jpg" />
   </controls:Panorama.Background>
</controls:Panorama> 

从代码方面来看,它是从以下位置完成的:-

$this.PanoObj.Background //它接受 Brush 类型。

我真的不明白这一点,因为从 XAML 来看它是一个 ImageBrush,但在代码中它是 Brush。 请帮助我如何解决此问题或从 ImageBrush 转换为 Brush。

谢谢,

I want to change the background image for the panorama view in the WP7 from code.

First from XAML:-

<controls:Panorama Title="earth" Name="PanoObj">
   <controls:Panorama.Background>
      <ImageBrush ImageSource="background.jpg" />
   </controls:Panorama.Background>
</controls:Panorama> 

From the code side it is done from:-

$this.PanoObj.Background //It accepts the type Brush.

I really dont understand this as from XAML it is an ImageBrush but in code it is Brush.
Please help me how to fix this or convert from ImageBrush to Brush.

thanks,

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

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

发布评论

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

评论(1

非要怀念 2024-11-15 06:25:17

ImageBrush 是一个Brush,请参阅继承层次结构

您不需要投射(或转换它)。

An ImageBrush is a Brush see the inheritance hierarchy.

You shouldn't need to cast (or convert it).

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