PivotViewer 控件不显示图像 (Silverlight)
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
@stuart @alison 谢谢你们我找到了解决方案。当您将枢轴放在像 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.
将 PivotViewer 从 StackPanel 中取出。众所周知,StackPanel 会破坏 PivotViewer 布局。
Take the PivotViewer out of the StackPanel. The StackPanel is known to break PivotViewer layouts.
您需要提供比这更多的信息来帮助我们调试这个问题。
一些基本建议是:
检查所有文件 - 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)