资源简介
1.单机版的考试系统,支持管理员登陆和学生登陆。
2.管理员可以编辑题库,出题数量,分值分配,学生编辑,成绩查询打印等功能。
3.学生可以选择试卷进行答题,有时间限制,提前交卷,成绩查询,答案解析等功能。
4.系统采用Access数据库。支持各种类型的题目导入。

代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.Reflection;
namespace Exam
{
partial class AboutBox : Form
{
public AboutBox()
{
InitializeComponent();
// 初始化 AboutBox 以显示程序集信息中包含的产品信息。
// 也可以通过以下方法更改应用程序的程序集信息设置:
// - 项目->属性->应用程序->程序集信息
// - AssemblyInfo.cs
this.Text = String.Format(“关于 {0}“ Assemblytitle);
this.labelProductName.Text = AssemblyProduct;
this.labelVersion.Text = String.Format(“版本 {0}“ AssemblyVersion);
this.labelCopyright.Text = AssemblyCopyright;
this.labelCompanyName.Text = AssemblyCompany;
this.textBoxDescription.Text = AssemblyDescription;
}
#region 程序集属性访问器
public string Assemblytitle
{
get
{
// 获取此程序集上的所有 title 属性
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblytitleAttribute) false);
// 如果至少有一个 title 属性
if (attributes.Length > 0)
{
// 请选择第一个属性
AssemblytitleAttribute titleAttribute = (AssemblytitleAttribute)attributes[0];
// 如果该属性为非空字符串,则将其返回
if (titleAttribute.title != ““)
return titleAttribute.title;
}
// 如果没有 title 属性,或者 title 属性为一个空字符串,则返回 .exe 的名称
return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().Codebase);
}
}
public string AssemblyVersion
{
get
{
return Assembly.GetExecutingAssembly().GetName().Version.ToString();
}
}
public string AssemblyDescription
{
get
{
// 获取此程序集的所有 Description 属性
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute) false);
// 如果 Description 属性不存在,则返回一个空字符串
if (attributes.Length == 0)
return ““;
// 如果有 Description 属性,则返回该属性的值
return ((AssemblyDescriptionAttribute)attributes[0]).Description;
}
}
public string AssemblyProduct
{
get
{
// 获取此程序集上的所有 Product 属性
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute) false);
// 如果 Product 属性不存在,则返回一个空字符串
if (attributes.Length == 0)
return ““;
// 如果有 Product 属性,则返回该属性的值
return ((AssemblyProductAttribute)attributes[0]).Product;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-07-23 09:23 Exam\
目录 0 2019-07-23 09:24 Exam\Exam\
文件 10605 2019-06-19 10:51 Exam\Exam\AboutBox.Designer.cs
文件 5447 2019-06-19 11:55 Exam\Exam\AboutBox.cs
文件 49168 2019-06-19 10:51 Exam\Exam\AboutBox.resx
文件 11134 2019-07-01 13:56 Exam\Exam\ba
文件 30364 2019-06-27 15:21 Exam\Exam\DynamicReport.cs
文件 111417 2019-07-01 13:57 Exam\Exam\EventsReport.rdlc
文件 9690 2019-06-27 15:17 Exam\Exam\Exam.csproj
文件 9184 2019-07-23 09:24 Exam\Exam\FrmEventsReport.Designer.cs
文件 12339 2019-07-23 09:24 Exam\Exam\FrmEventsReport.cs
文件 5817 2019-07-23 09:24 Exam\Exam\FrmEventsReport.resx
目录 0 2019-06-19 10:08 Exam\Exam\ImageFolder\
文件 25600 2008-11-05 11:36 Exam\Exam\ImageFolder\Thumbs.db
文件 231320 2008-08-19 14:16 Exam\Exam\ImageFolder\加载界面.bmp
文件 681624 2008-08-19 14:16 Exam\Exam\ImageFolder\学生登录成功窗体.bmp
文件 4088 2008-08-19 14:16 Exam\Exam\ImageFolder\清空按钮.bmp
文件 4088 2008-08-19 14:16 Exam\Exam\ImageFolder\登录按钮.bmp
文件 182656 2008-08-19 14:16 Exam\Exam\ImageFolder\登录界面背景.bmp
文件 4088 2008-08-19 14:16 Exam\Exam\ImageFolder\退出按钮.bmp
文件 466 2008-08-21 15:55 Exam\Exam\Program.cs
目录 0 2019-06-24 15:33 Exam\Exam\Properties\
文件 1156 2008-05-29 15:40 Exam\Exam\Properties\AssemblyInfo.cs
目录 0 2019-06-26 10:10 Exam\Exam\Properties\DataSources\
文件 581 2019-06-26 10:05 Exam\Exam\Properties\DataSources\ExamSubject.datasource
文件 581 2019-06-26 10:10 Exam\Exam\Properties\DataSources\ExamSubject1.datasource
文件 581 2019-06-26 10:10 Exam\Exam\Properties\DataSources\ExamSubject2.datasource
文件 585 2019-06-26 10:05 Exam\Exam\Properties\DataSources\ExamSubjectpd.datasource
文件 585 2019-06-26 10:10 Exam\Exam\Properties\DataSources\ExamSubjectpd1.datasource
文件 585 2019-06-26 10:10 Exam\Exam\Properties\DataSources\ExamSubjectpd2.datasource
文件 585 2019-06-26 10:05 Exam\Exam\Properties\DataSources\ExamSubjecttk.datasource
............此处省略83个文件信息
- 上一篇:C# 视频会议系统
- 下一篇:asp.net教程从入门到精通
相关资源
- 考试管理系统 - C#源码
- c#在线考试系统(附源码)
- 医院门诊管理系统 aspc#access数据库
- asp.net 在线考试系统及论文
- 自适应企业网站模板源码响应式网站
- C# Access版资产管理系统源代码
- c#茶楼管理系统源码(ACCESS )
- C#进销存管理系统(Access数据库)英文
- 学生管理系统(源码+access数据库)
- C#编写的KTV系统(附access数据库)
- C#将Excel导入到Access数据库表(winFor
- 身份证号码识别工具
- asp.net +access 网站+后台完整站
- 宾馆管理系统(c#2008access2003winform)
- asp.net在线考试系统源码 网页考试软件
- 在线考试系统 ASP.NET 三层架构
- 基于ASP.NET的在线考试系统
- asp.net课程设计网上投票系统access库包
- ASP.NET和ACCESS的网上投票系统 毕业设计
- 在线考试系统C#
- C#实现的简单在线考试系统功能齐全
- c# 固定资产源码,支持sql ,access,完
- ASP.NET学生选课系统.、c#学生选课系统
- Access+C#图书销售管理系统
- C#手把手教你做一个学生考试系统,附
- 网站后台管理系统
- 员工信息管理系统 Access数据库技术
- 学生信息管理系统(本系统的开发环
- ASP.NET班级网站信息系统C#源代码
- C#WinForm考试系统及源代码.zip
评论
共有 条评论