• 大小: 5.94MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-08-12
  • 语言: C#
  • 标签: c#  Sql  Server  

资源简介

界面美观 简单可用,非常完美。使用不需要进行任何修改,直接就能在vs2010或者2013上面运行

资源截图

代码片段和文件信息

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 AddGreadWindow : Form
    {
        public AddGreadWindow()
        {
            InitializeComponent();
        }

        private void label1_Click(object sender EventArgs e)
        {

        }

        private void textBox1_TextChanged(object sender EventArgs e)
        {

        }

        private void textBox2_TextChanged(object sender EventArgs e)
        {

        }

        private void textBox5_TextChanged(object sender EventArgs e)
        {

        }

        private void textBox3_TextChanged(object sender EventArgs e)
        {

        }

        private void button1_Click(object sender EventArgs e)
        {
            //封装数据
            Student s = new Student();
            s.Name = Convert.ToString(comboBox1.SelectedItem);
            s.C = Convert.ToDouble(textBox1.Text);
            s.English = Convert.ToDouble(textBox2.Text);
            s.Math = Convert.ToDouble(textBox3.Text);
            s.Chinese = Convert.ToDouble(textBox4.Text);
            s.Phy = Convert.ToDouble(textBox5.Text);
            s.Sum = s.C + s.English + s.Math + s.Chinese + s.Phy;
            //调用BLL层
            int i = new StudentBLL().addGread(s);
            if (i != 0)
            {
                success suc = new success();
                suc.Show();
                System.Threading.Thread.Sleep(2000);
                suc.Close();
                this.Close();
            }
            else
            {
                error er = new error();
                System.Threading.Thread.Sleep(2000);
                er.Close();

            }
                
        }

        private void AddGreadWindow_Load(object sender EventArgs e)
        {
            //查询数据库的到所有的学生
            List list = new StudentBLL().findAllStudent();
            //遍历list集合得到每个学生并把每个学生的姓名添加到下拉列表中
            foreach (Student s in list)
            {
                comboBox1.Items.Add(s.Name);
            }
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-11-10 21:32  学生管理系统\
     文件        2376  2018-06-29 16:58  学生管理系统\AddGreadWindow.cs
     文件       12317  2018-06-06 09:33  学生管理系统\AddGreadWindow.Designer.cs
     文件       92244  2018-06-06 09:33  学生管理系统\AddGreadWindow.resx
     文件         437  2018-06-04 16:16  学生管理系统\app.config
     目录           0  2018-06-04 16:39  学生管理系统\bin\
     目录           0  2018-06-04 16:53  学生管理系统\bin\Debug\
     目录           0  2018-06-04 16:40  学生管理系统\bin\Debug\byn\
     文件     2359296  2018-07-11 14:36  学生管理系统\bin\Debug\User.mdf
     文件      589824  2018-07-11 14:36  学生管理系统\bin\Debug\User_log.ldf
     目录           0  2018-06-04 16:40  学生管理系统\bin\Debug\zh-Hans-HK\
     文件     1008640  2018-12-17 12:31  学生管理系统\bin\Debug\学生管理系统.exe
     文件         437  2018-06-04 16:16  学生管理系统\bin\Debug\学生管理系统.exe.config
     文件      171520  2018-12-17 12:31  学生管理系统\bin\Debug\学生管理系统.pdb
     文件       24224  2018-12-17 12:31  学生管理系统\bin\Debug\学生管理系统.vshost.exe
     文件         437  2018-06-04 16:16  学生管理系统\bin\Debug\学生管理系统.vshost.exe.config
     文件         490  2018-04-12 07:35  学生管理系统\bin\Debug\学生管理系统.vshost.exe.manifest
     目录           0  2018-06-04 16:39  学生管理系统\bin\Release\
     文件        1575  2018-07-04 18:36  学生管理系统\DeleteWindow.cs
     文件        4096  2018-06-06 10:02  学生管理系统\DeleteWindow.Designer.cs
     文件       71394  2018-06-06 10:02  学生管理系统\DeleteWindow.resx
     文件         453  2018-06-04 16:54  学生管理系统\error.cs
     文件        1988  2018-06-04 16:54  学生管理系统\error.Designer.cs
     文件       79944  2018-06-04 16:54  学生管理系统\error.resx
     文件        3906  2018-07-03 21:40  学生管理系统\Form1.cs
     文件       10228  2018-06-09 16:21  学生管理系统\Form1.Designer.cs
     文件       92244  2018-06-09 16:21  学生管理系统\Form1.resx
     文件        1722  2018-07-05 13:46  学生管理系统\GradeSelectWindow.cs
     文件        6336  2018-06-26 17:15  学生管理系统\GradeSelectWindow.Designer.cs
     文件      241864  2018-06-26 17:15  学生管理系统\GradeSelectWindow.resx
     目录           0  2018-06-09 16:18  学生管理系统\image\
............此处省略111个文件信息

评论

共有 条评论