从c#代码设置全景视图的WP7背景图像
我想通过代码更改 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ImageBrush
是一个Brush
,请参阅继承层次结构。您不需要投射(或转换它)。
An
ImageBrush
is aBrush
see the inheritance hierarchy.You shouldn't need to cast (or convert it).