격리 된 저장소에 이미지를 저장하는 올바른 방법은 다음과 같습니까?실버 라이트 이미지를 IsolatedStorage에 저장
public void imageToStore(Image imageIn)
{
IsolatedStorageFile iso = IsolatedStorageFile.GetUserStoreForApplication();
IsolatedStorageFileStream s = new IsolatedStorageFileStream(imageIn.Name, FileMode.Create, iso);
using (StreamWriter writer = new StreamWriter(s))
{
writer.Write(imageIn);
}
}
+1 멋진 Imagetools는 필요한 것처럼 보입니다. – AnthonyWJones