• 大小: 1.1MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-08-28
  • 语言: C#
  • 标签: 真心不错  

资源简介

namespace 简单通讯录 { public partial class Form4 : Form { private Boolean ischange = true; public Form4() { InitializeComponent(); } public void addlistviewitem(String[] a) { ListViewItem item = new ListViewItem(a); listView1.Items.Add(item); } //保存 public void save() { FileStream fs = new FileStream(@"通讯录.txt", FileMode.Create, FileAccess.Write); StreamWriter sw = new StreamWriter(fs, Encoding.Default); for (int i = 0; i < this.listView1.Items.Count; i++) { sw.WriteLine(string.Format("{0}|{1}|{2}|{3}|{4}|{5}", listView1.Items[i].SubItems[0].Text, listView1.Items[i].SubItems[1].Text, listView1.Items[i].SubItems[2].Text, listView1.Items[i].SubItems[3].Text, listView1.Items[i].SubItems[4].Text,

资源截图

代码片段和文件信息

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 简单通讯录
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button4_Click(object sender EventArgs e)
        {
            DialogResult Diares;
            MessageBoxButtons button = MessageBoxButtons.OKCancel;
            MessageBoxIcon icon = MessageBoxIcon.Warning;
            string ask = “你确定要退出通讯录吗?“;
            string caption = “温馨提示“;
            Diares = MessageBox.Show(ask caption button icon);
            if (Diares == DialogResult.OK)
            {
                this.Close();
            }
        }

        private void button3_Click(object sender EventArgs e)
        {
            Form 添加联系人 = new Form2();
            添加联系人.Show();
        }

        private void button2_Click(object sender EventArgs e)
        {
            Form 快速查找=new Form3();
            快速查找.Show();
        }

        private void button1_Click(object sender EventArgs e)
        {
            Form 管理通讯录 = new Form4();
            管理通讯录.Show();
        }

        private void Form1_Load(object sender EventArgs e)
        {

        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-01-17 10:53  简单通讯录\
     目录           0  2015-01-17 10:51  简单通讯录\简单通讯录\
     文件         887  2013-04-17 09:16  简单通讯录\简单通讯录.sln
     文件       25600  2014-07-10 11:36  简单通讯录\简单通讯录.suo
     文件       50688  2015-01-17 16:37  简单通讯录\简单通讯录.v11.suo
     目录           0  2015-01-17 10:51  简单通讯录\简单通讯录\bin\
     目录           0  2015-01-17 10:51  简单通讯录\简单通讯录\bin\Debug\
     文件      282112  2015-01-17 16:01  简单通讯录\简单通讯录\bin\Debug\简单通讯录.exe
     文件       52736  2015-01-17 16:01  简单通讯录\简单通讯录\bin\Debug\简单通讯录.pdb
     文件       22984  2015-01-17 16:37  简单通讯录\简单通讯录\bin\Debug\简单通讯录.vshost.exe
     文件         490  2013-06-18 20:28  简单通讯录\简单通讯录\bin\Debug\简单通讯录.vshost.exe.manifest
     文件         146  2015-01-17 16:04  简单通讯录\简单通讯录\bin\Debug\通讯录.txt
     文件        1496  2015-01-17 12:32  简单通讯录\简单通讯录\Form1.cs
     文件        4649  2015-01-17 12:26  简单通讯录\简单通讯录\Form1.Designer.cs
     文件      161505  2015-01-17 12:32  简单通讯录\简单通讯录\Form1.resx
     文件        2007  2015-01-17 14:50  简单通讯录\简单通讯录\Form2.cs
     文件        6360  2015-01-17 12:22  简单通讯录\简单通讯录\Form2.Designer.cs
     文件       83724  2015-01-17 12:22  简单通讯录\简单通讯录\Form2.resx
     文件        2266  2015-01-17 15:11  简单通讯录\简单通讯录\Form3.cs
     文件        6472  2015-01-17 15:10  简单通讯录\简单通讯录\Form3.Designer.cs
     文件       83724  2015-01-17 15:10  简单通讯录\简单通讯录\Form3.resx
     文件        5068  2015-01-17 15:13  简单通讯录\简单通讯录\Form4.cs
     文件       14152  2015-01-17 15:01  简单通讯录\简单通讯录\Form4.Designer.cs
     文件       83724  2015-01-17 15:01  简单通讯录\简单通讯录\Form4.resx
     目录           0  2015-01-17 10:51  简单通讯录\简单通讯录\obj\
     目录           0  2015-01-17 10:51  简单通讯录\简单通讯录\obj\x86\
     目录           0  2015-01-17 16:01  简单通讯录\简单通讯录\obj\x86\Debug\
     文件        5420  2015-01-17 11:04  简单通讯录\简单通讯录\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        7077  2015-01-17 10:53  简单通讯录\简单通讯录\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件         892  2013-05-11 09:58  简单通讯录\简单通讯录\obj\x86\Debug\GenerateResource.read.1.tlog
     文件        4074  2013-05-11 09:58  简单通讯录\简单通讯录\obj\x86\Debug\GenerateResource.write.1.tlog
............此处省略20个文件信息

评论

共有 条评论

相关资源