PivotViewer 控件不显示图像 (Silverlight)

发布于 2024-11-03 01:08:45 字数 374 浏览 13 评论 0原文

我使用 Excel 插件来发布它们,然后将 cxml 和文件夹复制到我的 .web 项目中,当我运行数据透视表时,它可以工作并具有类别,但不显示图像。

xaml 代码:

<StackPanel>
<pivot:PivotViewer x:Name="PivotViewer" Height="310"></pivot:PivotViewer>
</StackPanel>

家庭代码:

PivotViewer.LoadCollection("http://localhost:2287/Test2.cxml",null);

提前致谢。

I use the excel plug-in to publish them, then i copy the cxml and the folder to my .web project and when i run the pivot works and has the categories but doesnt show images.

xaml code:

<StackPanel>
<pivot:PivotViewer x:Name="PivotViewer" Height="310"></pivot:PivotViewer>
</StackPanel>

home code:

PivotViewer.LoadCollection("http://localhost:2287/Test2.cxml",null);

Thanks in advance.

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

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

发布评论

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

评论(3

回忆凄美了谁 2024-11-10 01:08:45

@stuart @alison 谢谢你们我找到了解决方案。当您将枢轴放在像 stackpanel 这样的容器中时,您必须输入宽度和高度。如果您不声明其高度和宽度,它们将是无限的,并且图像将不会渲染。
这就是我解决它的方法。

<StackPanel Height="437" Width="960"> 
<pivot:PivotViewer x:Name="PivotViewer" Height="310"></pivot:PivotViewer>
</StackPanel> 

@stuart @alison Thank you bothI found the solution. When you have the pivot in a container like stackpanel, you have to put the width and height. If you do not declare its height and width they are infinite and the images wont render.
This is how i solved it.

<StackPanel Height="437" Width="960"> 
<pivot:PivotViewer x:Name="PivotViewer" Height="310"></pivot:PivotViewer>
</StackPanel> 
相权↑美人 2024-11-10 01:08:45

将 PivotViewer 从 StackPanel 中取出。众所周知,StackPanel 会破坏 PivotViewer 布局。

Take the PivotViewer out of the StackPanel. The StackPanel is known to break PivotViewer layouts.

再见回来 2024-11-10 01:08:45

您需要提供比这更多的信息来帮助我们调试这个问题。

一些基本建议是:

  • 检查所有文件 - dzi、dzc、png 等 - 的路径是否正确。

  • 此外,在不同的浏览器上尝试 - 我注意到正在进行大量缓存(因此,如果第一次失败,那么以后每次也可能会失败)

You'll need to supply a lot more information than that to help us debug this.

Some basic advice is:

  • Check that the pathing for all your files - dzi, dzc, png, etc - is correct.

  • Also, try it on different browsers - I've noticed a lot of caching going on (so if it fails first time then it might fail every later time too)

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