设置panoramaItem列表背景图片

发布于 2024-12-13 01:16:21 字数 353 浏览 0 评论 0原文

如何为 panoramaItem 的 ListBox 设置背景图像?

我有这个全景项目:

 <controls:PanoramaItem Header="Shopping list"  >

<ListBox x:Name="List"  ItemsSource="{Binding rList}"  ItemTemplate="{StaticResource ListViewModelTemplate}"  >
</ListBox>

</controls:PanoramaItem>

并且想要一个图像作为该列表项目的背景(笔记本图像)。我怎样才能这样做?

How can i set a background image for a panoramaItem's ListBox ?

I have this panorama item :

 <controls:PanoramaItem Header="Shopping list"  >

<ListBox x:Name="List"  ItemsSource="{Binding rList}"  ItemTemplate="{StaticResource ListViewModelTemplate}"  >
</ListBox>

</controls:PanoramaItem>

and would like to have an image as the background for this list item ( a notebook image). How can i do so?

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

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

发布评论

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

评论(1

三生路 2024-12-20 01:16:22

你只需要像这样设置ListBox的 Background

            <ListBox x:Name="List" ItemsSource="{Binding rList}" ItemTemplate="{StaticResource ListViewModelTemplate}"> 
                <ListBox.Background>
                    <ImageBrush Stretch="Fill" ImageSource="PanoramaBackground.png"/>
                </ListBox.Background>

You just need to set the ListBox's Background like this,

            <ListBox x:Name="List" ItemsSource="{Binding rList}" ItemTemplate="{StaticResource ListViewModelTemplate}"> 
                <ListBox.Background>
                    <ImageBrush Stretch="Fill" ImageSource="PanoramaBackground.png"/>
                </ListBox.Background>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文