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

资源简介

中国矿业大学程序设计综合实践课,学生通讯录,多功能实现,源代码

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace 学生通讯录
{
    public partial class Form_Add : Form
    {
        public Form_Add()
        {
            InitializeComponent();
        }

        private void btn_add_Click(object sender EventArgs e)
        {
            StudentInfo studentinfo = new StudentInfo();
            studentinfo.StudentId = Int32.Parse(txt_studengid.Text);
            studentinfo.Name = txt_name.Text;
            if (rb_man.Checked)
                studentinfo.Sex = “男“;
            else if (rb_woman.Checked)
                studentinfo.Sex = “女“;
            studentinfo.Age = Int32.Parse(txt_age.Text);
            studentinfo.BirthDate = DateTime.Parse(dt_birthdate.Text);
            studentinfo.Phone = txt_phone.Text;
            studentinfo.Email = txt_email.Text;
            studentinfo.HomeAddress = txt_homeaddress.Text;
            studentinfo.Profession = txt_profession.Text;
            if (StudentInfoBLL.AddStudentInfo(studentinfo))
              {
                  MessageBox.Show(“添加学生信息成功!“);
              }
         }

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

        private void label10_Click(object sender EventArgs e)
        {

        }
    }
}           
 


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-10-12 16:25  学生通讯录\
     文件         184  2018-10-12 14:09  学生通讯录\App.config
     文件       17360  2018-10-12 16:11  学生通讯录\Form_Add.Designer.cs
     文件        1555  2018-10-12 16:11  学生通讯录\Form_Add.cs
     文件        5817  2018-10-12 16:11  学生通讯录\Form_Add.resx
     文件       17578  2018-10-12 16:12  学生通讯录\Form_Edit.Designer.cs
     文件        2721  2018-10-12 16:12  学生通讯录\Form_Edit.cs
     文件        5817  2018-10-12 16:12  学生通讯录\Form_Edit.resx
     文件        7935  2018-10-12 16:18  学生通讯录\Form_Search.Designer.cs
     文件        2331  2018-10-12 16:18  学生通讯录\Form_Search.cs
     文件        8378  2018-10-12 16:18  学生通讯录\Form_Search.resx
     文件         531  2018-01-22 16:02  学生通讯录\Program.cs
     目录           0  2018-10-12 15:56  学生通讯录\Properties\
     文件        1328  2018-01-18 15:30  学生通讯录\Properties\AssemblyInfo.cs
     文件        5042  2018-10-12 14:09  学生通讯录\Properties\Resources.Designer.cs
     文件        7361  2018-01-23 14:59  学生通讯录\Properties\Resources.resx
     文件        1115  2018-10-12 14:09  学生通讯录\Properties\Settings.Designer.cs
     文件         249  2018-01-18 15:30  学生通讯录\Properties\Settings.settings
     文件         670  2018-01-23 11:15  学生通讯录\StudentInfo.cs
     文件       11480  2018-01-23 11:15  学生通讯录\StudentInfoBLL.cs
     目录           0  2018-10-12 15:56  学生通讯录\bin\
     目录           0  2018-10-12 15:56  学生通讯录\bin\Debug\
     目录           0  2018-10-12 15:56  学生通讯录\bin\Debug\xml\
     文件         607  2018-10-12 16:21  学生通讯录\bin\Debug\xml\Students.xml
     文件      104448  2018-10-12 16:18  学生通讯录\bin\Debug\学生通讯录.exe
     文件         184  2018-10-12 14:09  学生通讯录\bin\Debug\学生通讯录.exe.config
     文件       67072  2018-10-12 16:18  学生通讯录\bin\Debug\学生通讯录.pdb
     文件       24224  2018-10-12 14:18  学生通讯录\bin\Debug\学生通讯录.vshost.exe
     文件         184  2018-10-12 14:09  学生通讯录\bin\Debug\学生通讯录.vshost.exe.config
     文件         490  2018-04-12 07:35  学生通讯录\bin\Debug\学生通讯录.vshost.exe.manifest
     目录           0  2018-10-12 16:27  学生通讯录\bin\Release\
............此处省略33个文件信息

评论

共有 条评论