我正在尝试将我的Windows 7应用程序移植到一个新的用于Windows8.1和Windows 8.1的通用应用程序项目中。我已经安装了VS2013终极版和更新2 RC (其中包括8.1SDK)。然而,我不明白为什么我不能使用全景控件。它被移除了吗?
1) Panorama is not supported in a Window Phone project
2) The type "Panorama" was not found. Verify that you are not missing
an assembly reference and that all referenced assemblies have been built.
3) Unknown type "Panorama" in XML namespace
http://schemas.microsoft.com/winfx/2006/xaml/presentation"发布于 2014-05-02 12:16:44
您需要使用Hub控件。
Windows Phone 8.1面向开发人员-什么控件是新的
<Hub Header="My header">
<HubSection Header="My sub header">
<DataTemplate>
<Grid />
</DataTemplate>
</HubSection>
<HubSection Header="My sub header 2">
<DataTemplate>
<Grid />
</DataTemplate>
</HubSection>
</Hub>https://stackoverflow.com/questions/23427638
复制相似问题