概述Silverlight独立
存储之
读写文件 (2012-04-16 23:38:03) 引用 using System.IO; using System.IO.IsolatedStorage; 激发按钮事件 写入 private boid button_Click(object sender,System.Windows.RotedEventArgs e){ if(this.textbox.Text Silverlight独立存储之读写文件
(2012-04-16 23:38:03) 引用
using System.IO;
using System.IO.IsolatedStorage;
激发按钮事件 写入
private boID button_Click(object sender,System.windows.RotedEventArgs e){
if(this.textBox.Text=="" || this.passwordBox.Password==""){
MessageBox.Show("缺少输入信息");
}
IsolatedStoragefileStrea m isoStore=new IsolatedStoragefileStrea m("myinfo.txt",fileMode.Create,IsolatedStoragefile.GetUserStoreForApplicati on());
StreamWriter wtxt=new StreamWriter(isoStore);
wtxt.Writeline(this.textBox.Text.Trim());
wtxt.Writeline(this.passwordBox.Password.Trim());
wtxt.Close();
isoStore.Close();
MessageBox.Show("独立存储吸入myinfo.txt完成!");
}
激发按钮事件 读出
private boID buttonread_Click(object sender,System.windows.RotedEventArgs e){
this.textblock.Text="";
if(!IsolatedStoragefile.GetUserStoreForApplicati on().fileExists("myinfo.txt")){
MessageBox.Show("没有可用的独立存储文件!");
}
IsolatedStoragefileStrea m isoStore=new IsolatedStoragefileStrea m("myinfo.txt",fileMode.Open,IsolatedStoragefile.GetUserStoreForApplicati on());
StreamReader rtxt=new StreamReader(isoStore);
this.textblock.Text=rtxt.Readline();
this.textblock.Text+="\r\n";
this.textblock.Text+=rtxt.Readline();
rtxt.Close();
isoStore.Close();
}
点击打开链接 http://blog.sina.com.cn/s/blog_7131d05a01012llv.HTML 总结
以上是内存溢出为你收集整理的Silverlight独立存储之读写文本文件全部内容,希望文章能够帮你解决Silverlight独立存储之读写文本文件所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
评论列表(0条)