c#-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);
提前致谢.
解决方法:
@stuart @alison谢谢大家我找到了解决方案.当将枢轴放入像stackpanel这样的容器中时,必须放置宽度和高度.如果不声明其高度和宽度,则它们是无限的,并且图像将不会渲染.
这就是我解决的方法.
<StackPanel Height="437" Width="960">
<pivot:PivotViewer x:Name="PivotViewer" Height="310"></pivot:PivotViewer>
</StackPanel>
标签:deepzoom,c,net,silverlight,pivotviewer 来源: https://codeday.me/bug/20191208/2091794.html