BS1027-基于C#+SqlServer+CS架构开发实现学生信息管理系统,学生信息录入系统

2022-12-02 15:53:58 浏览数 (1)

基于C# SqlServer CS架构实现的学生信息管理系统,学生信息录入系统,系统采用多层C/S软件架构,采用C#编程语言开发技术实现界面窗口版本的学生管理系统程序界面,实现CS架构窗口事件监听,完成学生信息创建,编辑,删除等。

原文地址

一、程序设计

本次基于C# SqlServer CS架构实现的学生信息管理系统,学生信息录入系统,主要内容涉及:

主要功能模块:学生管理、学生信息新增、学生信息在线编辑、学生信息删除,系统管理,分析统计等等

主要包含技术:C#编程语言,MFC,C#多线程,窗口事件监听,数据库,SQLSERVER,GUI

主要包含算法:其他等

二、效果实现

学生添加

在这里插入图片描述在这里插入图片描述

学生管理

在这里插入图片描述在这里插入图片描述

其他效果省略

三、核心代码

1.学生添加

本系统添加学生信息,主要采用窗口监听用户操作动作,记录用户输入的学生信息进行校验,校验通过后存入数据库等。

代码语言:java复制
namespace StuManger
{
    public partial class AddStudent : Form
    {
        SqlConnection conn;
        SqlCommand cmd;
        public AddStudent()
        {
            InitializeComponent();
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            string ss = ConfigurationManager.ConnectionStrings["Stu"].ToString();
            //建立数据库连接
            conn = new SqlConnection(ss);
            try
            {
                //开启连接           
                conn.Open();
                // MessageBox.Show("数据库连接成功!");           
            }
            catch (Exception)
            {
                MessageBox.Show("数据库连接失败!");
            }
        }
        private void AddStudent_Load(object sender, EventArgs e)
        {
        }
        private void label1_Click(object sender, EventArgs e)
        {
        }
        protected override bool ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData)
        {
            switch (keyData)
            {
                case Keys.Escape:
                this.Close();//esc关闭窗体
                break;
            }
            return false;
        }
        private void button1_Click(object sender, EventArgs e)
        {
            string StuNum = textBox1.Text.Trim();
            string StuName = textBox2.Text.Trim();
            int StuAge;
            Int32.TryParse(textBox3.Text.Trim(), out StuAge);
            string StuClass = textBox5.Text.Trim();
            string StuPhone = textBox6.Text.Trim();
            string StuSex = radioButton1.Checked ? "男" : "女";
            if (String.IsNullOrEmpty(StuNum))
            {
                MessageBox.Show("学号不能为空!");
            }
            if (String.IsNullOrEmpty(StuName))
            {
                MessageBox.Show("姓名不能为空!");
            }
            
            if (String.IsNullOrEmpty(StuClass))
            {
                MessageBox.Show("班级不能为空!");
            }
            if (String.IsNullOrEmpty(StuPhone))
            {
                MessageBox.Show("联系方式不能为空!");
            }
            string sql = string.Format("insert into Stu_dent values ('{0}','{1}','{2}','{3}','{4}','{5}')", StuNum, StuName,StuAge,StuSex, StuClass, StuPhone );
            cmd = new SqlCommand(sql, conn);
            int count = cmd.ExecuteNonQuery();
            if (count > 0)
            {
                MessageBox.Show("添加成功!");
            }
            else
            {
                MessageBox.Show("添加失败!");
            }
            this.Close();
        }
    }
}

2.系统程序主入口

本系统主入口为系统启动时候执行的加载类,实现系统初始化参数等。

代码语言:java复制
    static class Program
    {
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Login login = new Login();
            Form1 f = new Form1();
            login.StartPosition = FormStartPosition.CenterScreen;
            Application.Run(login);
            if(Form1.isLogin)
            {
                f.StartPosition = FormStartPosition.CenterScreen;
                Application.Run(f);
            }
        }
    }

0 人点赞