- 1、本文档共13页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
c上机试验一
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;
using System.IO;//为后面引入File文件
namespace test2
{
public partial class login : Form
{
public login()
{
InitializeComponent();
}
private void btnlogin_Click(object sender, EventArgs e)
{
setUserInfo();
mainform mainform = new mainform ();
this.Hide();
mainform.Show();
}
private void btnexit_Click(object sender, EventArgs e)
{
Application.Exit();
}
public string getusername()
{
string strusername = ;
string strFile = Application.StartupPath + \\myFile\\userinfo.txt;
if (File.Exists(strFile))
{
strusername = File.ReadAllText(strFile );
}
return strusername ;
}
public void setUserInfo()
{
string strusername = textBoxname.Text.Trim();
string strFile = Application.StartupPath + \\myFile\\userinfo.txt;
if (!File.Exists(strFile ))
{
File.Create(strFile );
}
File.WriteAllText(strFile ,strusername );
}
private void login_Load(object sender, EventArgs e)
{
this.textBoxname.Text = getusername();
}
}
}
namespace test2
{
partial class display
{
/// summary
/// Required designer variable.
/// /summary
private System.ComponentModel.IContainer components = null;
/// summary
/// Clean up any resources being used.
/// /summary
/// param name=disposingtrue if managed resources should be disposed; otherwise, false./param
protected override void Dispose(bool disposing)
{
if (
您可能关注的文档
- abaqus钣金冲压成型例题讲解II.doc
- ABSTRACT Dynamic Response Analysis of Onshore Wind Energy Power Units during Earthquakes an.pdf
- ABAQUS箱型桥梁的GUI二次开发.pdf
- ABSTRACT A Survey of Design Issues in Spatial Input.pdf
- Abstract Empirical Design of Geometric Algorithms.pdf
- Abstract static Type Inference in a Dynamically Typed Language.pdf
- Abstract Regional Frequency Analysis of Extreme Wave Heights Trading Space for Time.pdf
- Access操作练习题(附操作步骤).doc
- access基础应用.ppt
- Access的应用.ppt
文档评论(0)