Silverlight独立存储之读写文本文件

Silverlight独立存储之读写文本文件,第1张

概述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独立存储之读写文本文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1068113.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存