• 大小: 87KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-10
  • 语言: C#
  • 标签:

资源简介

C#编写的通讯录管理系统,C#源代码程序,有添加、删除、修改、首页、上一页、下一页、未页等功能VisualStudio2008创建 下载:http://download.csdn.net/user/gouyue QQ223857666勾月,guocan@msn.cn

资源截图

代码片段和文件信息

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 Address
{
    public partial class AddMate : Form
    {
        public Mate FatherMate;
        public AddMate(Mate m)
        {
            InitializeComponent();
            this.FatherMate = m;
        }

        private void btnAdd_Click(object sender EventArgs e)
        {
            if (this.textBox1.Text == ““)
            {
                MessageBox.Show(“姓名不能为空!“ “温馨提示“);
                return;
            }
            if (this.textBox3.Text == ““)
            {
                this.textBox3.Text = “无“;
            }
            if (this.textBox4.Text == ““)
            {
                this.textBox4.Text = “无“;
            }
            if (this.textBox5.Text == ““)
            {
                this.textBox5.Text = “暂无邮箱“;
            }
            if (MyMate.AddSingleMate(this.textBox1.Text textBox2.Text textBox3.Text textBox4.Text textBox5.Text))
            {
                MessageBox.Show(“添加成功!“ “温馨提示!“);
                this.FatherMate.bind(this.FatherMate.currentpage this.FatherMate.pagesize);
                textBox1.Text = ““;
                textBox2.Text = ““;
                textBox3.Text = ““;
                textBox4.Text = ““;
                textBox5.Text = ““;
            }
            else
            {
                MessageBox.Show(“添加失败!“);
            }
        }

        private void btnEnd_Click(object sender EventArgs e)
        {
            this.Close();
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1770  2009-02-08 16:52  C#211通讯录管理系统\Address\AddMate.cs

     文件       8154  2009-02-08 16:52  C#211通讯录管理系统\Address\AddMate.Designer.cs

     文件       5814  2009-02-08 16:52  C#211通讯录管理系统\Address\AddMate.resx

     文件       6468  2012-03-22 14:55  C#211通讯录管理系统\Address\Address.csproj

     文件        478  2012-03-22 14:55  C#211通讯录管理系统\Address\Address.csproj.user

     文件        144  2012-03-22 14:55  C#211通讯录管理系统\Address\app.config

     文件      31232  2012-12-19 11:18  C#211通讯录管理系统\Address\bin\Debug\Address.exe

     文件        144  2012-03-22 14:55  C#211通讯录管理系统\Address\bin\Debug\Address.exe.config

     文件      69120  2012-12-19 11:18  C#211通讯录管理系统\Address\bin\Debug\Address.pdb

     文件      11592  2012-12-19 11:18  C#211通讯录管理系统\Address\bin\Debug\Address.vshost.exe

     文件        144  2012-03-22 14:55  C#211通讯录管理系统\Address\bin\Debug\Address.vshost.exe.config

     文件        490  2009-08-31 00:40  C#211通讯录管理系统\Address\bin\Debug\Address.vshost.exe.manifest

     文件       4951  2012-09-12 11:10  C#211通讯录管理系统\Address\bin\Debug\mate.xml

     文件       3262  2009-02-08 16:59  C#211通讯录管理系统\Address\BlueMoon.ico

     文件       3802  2009-04-01 16:04  C#211通讯录管理系统\Address\Mate.cs

     文件       7678  2009-04-01 16:04  C#211通讯录管理系统\Address\Mate.Designer.cs

     文件      11213  2009-04-01 16:04  C#211通讯录管理系统\Address\Mate.resx

     文件       2656  2009-02-08 16:52  C#211通讯录管理系统\Address\ModifyMate.cs

     文件      10090  2009-02-08 16:52  C#211通讯录管理系统\Address\ModifyMate.Designer.cs

     文件       6008  2009-02-08 16:52  C#211通讯录管理系统\Address\ModifyMate.resx

     文件       8596  2009-02-08 16:28  C#211通讯录管理系统\Address\MyMate.cs

     文件        180  2012-12-19 11:18  C#211通讯录管理系统\Address\obj\Debug\Address.AddMate.resources

     文件       4700  2012-12-19 11:18  C#211通讯录管理系统\Address\obj\Debug\Address.csproj.FileListAbsolute.txt

     文件        969  2009-04-01 16:04  C#211通讯录管理系统\Address\obj\Debug\Address.csproj.GenerateResource.Cache

     文件      31232  2012-12-19 11:18  C#211通讯录管理系统\Address\obj\Debug\Address.exe

     文件       3828  2012-12-19 11:18  C#211通讯录管理系统\Address\obj\Debug\Address.Mate.resources

     文件        180  2012-12-19 11:18  C#211通讯录管理系统\Address\obj\Debug\Address.ModifyMate.resources

     文件      69120  2012-12-19 11:18  C#211通讯录管理系统\Address\obj\Debug\Address.pdb

     文件        180  2012-12-19 11:18  C#211通讯录管理系统\Address\obj\Debug\Address.Properties.Resources.resources

     文件       6349  2012-12-19 11:18  C#211通讯录管理系统\Address\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

............此处省略26个文件信息

评论

共有 条评论