• 大小: 19.75MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-14
  • 语言: C#
  • 标签: C#  

资源简介

一个简单的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 教材管理系统
{
    public partial class Addbook : Form
    {
        public Addbook()
        {
            InitializeComponent();
        }
        DBHelper db = new DBHelper();
        private void button1_Click(object sender EventArgs e)
        {
            if (this.textBox1.Text != ““ && this.textBox2.Text != ““ && this.textBox3.Text != ““ && this.textBox4.Text != ““ && this.textBox5.Text != ““ && this.textBox6.Text != ““ && this.textBox7.Text != ““)
            {
                string strtxt = string.Format(“insert into Addbook values(‘{0}‘‘{1}‘‘{2}‘‘{3}‘‘{4}‘‘{5}‘‘{6}‘‘{7}‘)“
                    this.textBox1.Text
                    this.textBox2.Text
                    this.textBox3.Text
                    this.textBox4.Text
                    this.dateTimePicker1.Value.ToString()
                    this.textBox5.Text
                    this.textBox6.Text
                    this.textBox7.Text);
                int num = db.Nonquery(strtxt);
                if (num > 0)
                {
                    MessageBox.Show(“添加成功“);
                }
                else {
                    MessageBox.Show(“添加失败“);
                }
            }
            else {
                MessageBox.Show(“请填写完整的信息“);
            }
        }

        private void button2_Click(object sender EventArgs e)
        {
                    this.textBox1.Text=““;
                    this.textBox2.Text=““;
                    this.textBox3.Text=““;
                    this.textBox4.Text=““;
                    this.dateTimePicker1.Value = System.DateTime.Now;
                    this.textBox5.Text=““;
                    this.textBox6.Text=““;
                    this.textBox7.Text=““;
        }

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

        private void Addbook_Load(object sender EventArgs e)
        {

        }
    }
}

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

     文件        896  2013-06-15 13:21  教材管理系统\教材管理系统.sln

    ..A..H.     32768  2013-07-28 23:15  教材管理系统\教材管理系统.suo

     文件       2247  2013-06-17 13:01  教材管理系统\教材管理系统\Addbook.cs

     文件      12817  2013-06-17 13:01  教材管理系统\教材管理系统\Addbook.Designer.cs

     文件       5817  2013-06-17 13:01  教材管理系统\教材管理系统\Addbook.resx

     文件       2236  2013-06-15 16:33  教材管理系统\教材管理系统\AddClass.cs

     文件      12060  2013-06-15 14:57  教材管理系统\教材管理系统\AddClass.Designer.cs

     文件       5817  2013-06-15 14:57  教材管理系统\教材管理系统\AddClass.resx

     文件       1336  2013-06-17 14:12  教材管理系统\教材管理系统\DBHelper.cs

     文件       2013  2013-06-17 14:07  教材管理系统\教材管理系统\Delbook.cs

     文件       3961  2013-06-17 14:07  教材管理系统\教材管理系统\Delbook.Designer.cs

     文件       5817  2013-06-17 14:07  教材管理系统\教材管理系统\Delbook.resx

     文件       1964  2013-06-16 21:35  教材管理系统\教材管理系统\Login.cs

     文件       6818  2013-06-16 21:35  教材管理系统\教材管理系统\Login.Designer.cs

     文件     163218  2013-06-16 21:35  教材管理系统\教材管理系统\Login.resx

     文件       3770  2013-06-17 15:22  教材管理系统\教材管理系统\Main.cs

     文件      30810  2013-06-17 15:22  教材管理系统\教材管理系统\Main.Designer.cs

     文件    7485608  2013-06-17 15:22  教材管理系统\教材管理系统\Main.resx

     文件        499  2013-06-16 18:19  教材管理系统\教材管理系统\Program.cs

     文件       2082  2013-06-17 14:12  教材管理系统\教材管理系统\regedit.cs

     文件       7510  2013-06-17 14:12  教材管理系统\教材管理系统\regedit.Designer.cs

     文件       5817  2013-06-17 14:12  教材管理系统\教材管理系统\regedit.resx

     文件       5294  2013-06-16 22:09  教材管理系统\教材管理系统\教材管理系统.csproj

     文件        227  2013-06-15 15:02  教材管理系统\教材管理系统\教材管理系统.csproj.user

     文件    5132800  2013-06-17 15:22  教材管理系统\教材管理系统\bin\Debug\教材管理系统.exe

     文件      75264  2013-06-17 15:22  教材管理系统\教材管理系统\bin\Debug\教材管理系统.pdb

     文件      11600  2013-07-28 21:03  教材管理系统\教材管理系统\bin\Debug\教材管理系统.vshost.exe

     文件        490  2010-03-17 22:39  教材管理系统\教材管理系统\bin\Debug\教材管理系统.vshost.exe.manifest

     文件       6386  2013-07-28 21:03  教材管理系统\教材管理系统\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       2848  2013-06-17 15:22  教材管理系统\教材管理系统\obj\x86\Debug\GenerateResource.read.1.tlog

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

评论

共有 条评论