资源简介
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教程从入门到精通
相关资源
- asp.net在线考试系统简单、齐全、仅供
- ASP.Net在线考试系统.rar
- asp.net+access网上订餐系统
- c# 小型图书馆管理系统
- C#access学籍管理系统
-
Visual C# and Databa
ses - 毕业设计完整.net在线考试系统
- c#+access 酒店管理系统 很简单 最基本
- C#在线考试系统119750
- asp.net在线购物网站
- C# VS2008+Access学生信息管理系统
- (C#完整项目代码+Access 数据库)卡拉
- asp.net在线考试系统_三个简单
- 人事工资管理系统(C#+Access)
- Oracle.DataAccess 64位/32位 各个版本
- C# 学员在线考试系统(可自动批阅试
- winform案例学校管理系统非常完整的
- c#课程设计--在线考试系统
- C#+access学校教务管理系统
- ASP.NET+SQL SERVER 在线考试系统
- 简单的ASP校在线考试系统
- ASP.NET党校在线考试系统整站源码
- C# 学生考试管理系统
- c#+Access图书管理系统
- ASP.NET+ACCESS网上购物网站
- 宾馆酒店管理系统(C#+Access)
- 简单在线考试系统参考
- C# 考试系统 自动选题答题,计算得分
- C#编写在线考试系统源码可直接运行
- ASP.net源码:在线网上考试系统,专业
评论
共有 条评论