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

资源简介

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;

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();
        }
    }
}

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

     文件     434688  2014-05-04 13:38  65邱荣达.doc

    I.A....      1770  2009-02-08 16:52  个人通讯录管理系统源代码\Address\AddMate.cs

    I.A....      8154  2009-02-08 16:52  个人通讯录管理系统源代码\Address\AddMate.Designer.cs

    I.A....      5814  2009-02-08 16:52  个人通讯录管理系统源代码\Address\AddMate.resx

    I.A....      6071  2014-05-03 17:16  个人通讯录管理系统源代码\Address\Address.csproj

    I.A....       497  2014-04-30 22:40  个人通讯录管理系统源代码\Address\Address.csproj.user

    I.A....        77  2014-05-03 17:09  个人通讯录管理系统源代码\Address\app.config

    I.A....    458240  2014-05-03 22:17  个人通讯录管理系统源代码\Address\bin\Debug\Address.exe

    I.A....        77  2014-05-03 17:09  个人通讯录管理系统源代码\Address\bin\Debug\Address.exe.config

    I.A....     62976  2014-05-03 22:17  个人通讯录管理系统源代码\Address\bin\Debug\Address.pdb

    I.A....     21464  2014-05-04 13:45  个人通讯录管理系统源代码\Address\bin\Debug\Address.vshost.exe

    I.A....        77  2014-05-03 17:09  个人通讯录管理系统源代码\Address\bin\Debug\Address.vshost.exe.config

    I.A....       490  2013-03-05 08:06  个人通讯录管理系统源代码\Address\bin\Debug\Address.vshost.exe.manifest

    I.A....      3373  2014-05-03 23:14  个人通讯录管理系统源代码\Address\bin\Debug\mate.xml

    I.A....      4332  2014-05-03 22:17  个人通讯录管理系统源代码\Address\Mate.cs

    I.A....     10462  2014-05-03 22:17  个人通讯录管理系统源代码\Address\Mate.Designer.cs

    I.A....    654701  2014-05-03 22:17  个人通讯录管理系统源代码\Address\Mate.resx

    I.A....      2656  2009-02-08 16:52  个人通讯录管理系统源代码\Address\ModifyMate.cs

    I.A....     10090  2009-02-08 16:52  个人通讯录管理系统源代码\Address\ModifyMate.Designer.cs

    I.A....      6008  2009-02-08 16:52  个人通讯录管理系统源代码\Address\ModifyMate.resx

    I.A....      8596  2009-02-08 16:28  个人通讯录管理系统源代码\Address\MyMate.cs

    I.A....       180  2014-05-03 17:16  个人通讯录管理系统源代码\Address\obj\Debug\Address.AddMate.resources

    I.A....      2267  2014-05-04 13:45  个人通讯录管理系统源代码\Address\obj\Debug\Address.csproj.FileListAbsolute.txt

    I.A....       969  2014-05-03 22:17  个人通讯录管理系统源代码\Address\obj\Debug\Address.csproj.GenerateResource.Cache

    I.A....      1757  2014-04-30 22:21  个人通讯录管理系统源代码\Address\obj\Debug\Address.csprojResolveAssemblyReference.cache

    I.A....    458240  2014-05-03 22:17  个人通讯录管理系统源代码\Address\obj\Debug\Address.exe

    I.A....    432820  2014-05-03 22:17  个人通讯录管理系统源代码\Address\obj\Debug\Address.Mate.resources

    I.A....       180  2014-05-03 17:16  个人通讯录管理系统源代码\Address\obj\Debug\Address.ModifyMate.resources

    I.A....     62976  2014-05-03 22:17  个人通讯录管理系统源代码\Address\obj\Debug\Address.pdb

    I.A....       180  2014-05-03 17:16  个人通讯录管理系统源代码\Address\obj\Debug\Address.Properties.Resources.resources

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

评论

共有 条评论