用Visual studio 2005的C#语言编一个手机上的简易浏览器程序,并在模拟器上实现。需要完整代码 谢谢了
1个回答
展开全部
你可以看 一下下面的参考资料:
spjlveudaa51127754532011-10-12 19:03:08 建立一个窗体,三个控件:一个Label; 一个textbox控件,Name为txtPassWord 一个button按钮,Name为btnOK 完整程序如下(程序已经测试,应该可以满足你的要求) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace mimachuangti { public partial class Form1 : Form { int count = 0; //记录点击次数 string strpassword = "123";//初始密码 public Form1() { InitializeComponent(); } private void btnOK_Click(object sender, EventArgs e) //按钮响应程序 { if (txtPassWord.Text == strpassword) { MessageBox.Show("欢迎进入"); } else { if (count < 2) { MessageBox.Show("密码不正确,请重新输入"); txtPassWord.Focus(); count++; } else { MessageBox.Show("输入错误密码超过三次,系统即将关闭"); this.Close(); } } } } }
spjlveudaa51127754532011-10-12 19:03:08 建立一个窗体,三个控件:一个Label; 一个textbox控件,Name为txtPassWord 一个button按钮,Name为btnOK 完整程序如下(程序已经测试,应该可以满足你的要求) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace mimachuangti { public partial class Form1 : Form { int count = 0; //记录点击次数 string strpassword = "123";//初始密码 public Form1() { InitializeComponent(); } private void btnOK_Click(object sender, EventArgs e) //按钮响应程序 { if (txtPassWord.Text == strpassword) { MessageBox.Show("欢迎进入"); } else { if (count < 2) { MessageBox.Show("密码不正确,请重新输入"); txtPassWord.Focus(); count++; } else { MessageBox.Show("输入错误密码超过三次,系统即将关闭"); this.Close(); } } } } }
追问
using System.Linq;
这个是什么啊
我输入这个程序后 编译有错
E:\yingyongchengxu\DeviceApplication1\DeviceApplication1\Form1.cs(6,14): 错误 CS0234: 命名空间“System”中不存在类型或命名空间名称“Linq”(是缺少程序集引用吗?)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |