定义PhotoSource保存图片流
private Stream mPhotoSource;
public Stream PhotoSource
{
get { return mPhotoSource; }
set
{
mPhotoSource = value;
RaisePropertyChanged("PhotoSource");
}
}
public IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;
settings[voiceKey] = VoiceStream;
settings.Save();
调用save()时 报 SecurityException
如何解决