Form formPreview = new Form()
public Leaf(string name) : base(name) { }
public override void Add(Component c)
{
Console.WriteLine("Cannot add to a leaf")
}
public override void Remove(Component c)
{
Console.WriteLine("Cannot remove to a leaf")
}
public override void Display(int depth)
{
Console.WriteLine(new string('-',depth)+name)
}
}
你在登陆界面登陆成功的时候 生成一个 记事本txt 文件 把你的用户名写在 txt文件里面当然在你登陆窗体加载的时候 要写一个 读取txt的方法
string str = 用户名 (字符创)
FileStream fs=new FileStream (path+".txt",FileMode.Create)
StreamWriter sw = new StreamWriter(fs)
sw.Write(str)
sw.Close()
fs.Close()
写的 读的 是read
为了这20分 仁至义尽
我可以帮助你,你先设置我最佳答案后,我百度Hii教你。你的串号我已经记下,采纳后我会帮你制作
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)