gpt4 book ai didi

c# - Designview 中的 IsolatedStorage 异常

转载 作者:太空宇宙 更新时间:2023-11-03 21:58:42 24 4
gpt4 key购买 nike

大家好,我在尝试编辑我的 UI 时遇到了一个孤立的异常

它说

Unable to determine application identity of the caller. at System.IO.IsolatedStorage.IsolatedStorage.InitStore(IsolatedStorageScope scope, Type appEvidenceType) at System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(IsolatedStorageScope scope, Type applicationEvidenceType)at "CLASS FILE NAME.cs"

当我尝试这样做时

    <data:scheduledItems x:Key="alarmCollection" />
</phone:PhoneApplicationPage.Resources>

我用它来绑定(bind)数据。它可以工作,但我无法对我的设计 View 做任何事情

谢谢!

最佳答案

在我看来,Visual Studio 正在尝试从独立存储中检索数据,但它不能,因为它是 Visual Studio 而不是您的应用程序。如果您考虑一下,这是有道理的——隔离存储仅在应用程序部署到 Windows Phone 后创建,而不是在此之前。它在设计 View 中不可用。

如果您想在设计 View 中实际显示此数据,则不能。但是您可以检查是否附加了设计 View ,并避免尝试以这种方式访问​​独立存储。

using System.ComponentModel;

...

if (DesignerProperties.IsInDesignView)
{
// return dummy data for the design view
}
else
{
// grab data from isolated storage
}

关于c# - Designview 中的 IsolatedStorage 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11167300/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com