2013年9月25日

WP8数据存储--独立存储文件

摘要: 主要的三个步骤1.调用手机的独立存储 例如:IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForApplication()2.创建独立存储文件流 例如:IsolatedStorageFileStream location = new IsolatedStorageFileStream(nateText.Text + ".item", System.IO.FileMode.Create, storage);3.读写该文件流 例如:将独立存储文件流转化为可写流 System.IO.StreamWrit 阅读全文

posted @ 2013-09-25 16:28 MyBeN 阅读(1340) 评论(0) 推荐(1) 编辑

WP8数据存储--独立存储设置

摘要: View Code using System;using System.Collections.Generic;using System.Linq;using System.... 阅读全文

posted @ 2013-09-25 16:00 MyBeN 阅读(419) 评论(0) 推荐(0) 编辑

导航