资源简介
ACCP5.0 .NET三层架构项目学生信息管理系统源代码
(完整版,清晰明了)标准!
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
/******************************
* 类名:AdmForm
* 创建日期:2007-7-13
* 功能描述:提供系统主界面
* ***************************/
namespace MySchool
{
public partial class AdmForm : Form
{
#region Public Methods
public AdmForm()
{
InitializeComponent();
}
#endregion
#region Event Handlers
///
/// 用户单击退出菜单项时,退出应用程序
///
///
///
private void mnuExit_Click(object sender EventArgs e)
{
DialogResult choice;
choice = MessageBox.Show(“确定要退出吗?“ “退出系统“ MessageBoxButtons.OKCancel MessageBoxIcon.Information);
if(choice == DialogResult.OK)
Application.Exit();
}
///
/// 当窗体打开时,在状态栏显示用户姓名
///
///
///
private void AdmForm_Load(object sender EventArgs e)
{
}
///
/// 用户单击创建用户菜单项时,出现新建用户窗口
///
///
///
private void mnuNewStu_Click(object sender EventArgs e)
{
// 创建新建用户窗体
CreateUserForm createUser = new CreateUserForm();
////createUser.MdiParent = this;
createUser.ShowDialog(); // 显示新建用户窗体
}
///
///用户单击查询用户菜单项时,出现学员信息查询窗口
///
///
///
private void mnuSearchUser_Click(object sender EventArgs e)
{
ViewStudentForm viewStudentForm = new ViewStudentForm();
////viewStudentForm.MdiParent = this;
viewStudentForm.ShowDialog();
}
///
/// 用户单击查看教师信息时,显示教师信息列表窗体
///
///
///
private void mnuTeacherList_Click(object sender EventArgs e)
{
}
private void mnuEditUser_Click(object sender EventArgs e)
{
}
///
/// 用户单击时,显示创建班级窗体
///
///
///
private void mnuCreateClass_Click(object sender EventArgs e)
{
}
#endregion
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3381 2007-10-22 14:28 MySchoolPro.sln
文件 3072 2008-01-08 09:42 MySchool\AdmForm.cs
文件 15131 2007-12-17 11:22 MySchool\AdmForm.Designer.cs
文件 6405 2007-12-17 11:22 MySchool\AdmForm.resx
文件 462 2008-01-08 09:34 MySchool\app.config
文件 20480 2008-01-08 09:23 MySchool\bin\Debug\MySchool.BLL.dll
文件 34304 2008-01-08 09:23 MySchool\bin\Debug\MySchool.BLL.pdb
文件 24576 2008-01-08 09:15 MySchool\bin\Debug\MySchool.DAL.dll
文件 40448 2008-01-08 09:15 MySchool\bin\Debug\MySchool.DAL.pdb
文件 16384 2008-01-08 09:15 MySchool\bin\Debug\MySchool.DALFactory.dll
文件 44544 2008-01-08 09:15 MySchool\bin\Debug\MySchool.DALFactory.pdb
文件 164352 2008-01-08 09:42 MySchool\bin\Debug\MySchool.exe
文件 462 2008-01-08 09:34 MySchool\bin\Debug\MySchool.exe.config
文件 16384 2008-01-08 09:15 MySchool\bin\Debug\MySchool.IDAL.dll
文件 7680 2008-01-08 09:15 MySchool\bin\Debug\MySchool.IDAL.pdb
文件 1937408 2007-11-21 16:38 MySchool\bin\Debug\MySchool.mdb
文件 20480 2007-12-17 11:53 MySchool\bin\Debug\MySchool.Models.dll
文件 44544 2007-12-17 11:53 MySchool\bin\Debug\MySchool.Models.pdb
文件 83456 2008-01-08 09:42 MySchool\bin\Debug\MySchool.pdb
文件 5632 2005-11-11 22:25 MySchool\bin\Debug\MySchool.vshost.exe
文件 462 2008-01-08 09:34 MySchool\bin\Debug\MySchool.vshost.exe.config
目录 0 2008-01-16 16:08 MySchool\bin\Debug
目录 0 2008-01-16 16:08 MySchool\bin
文件 5413 2008-01-08 09:27 MySchool\CreateUserForm.cs
文件 17547 2007-07-13 17:54 MySchool\CreateUserForm.Designer.cs
文件 6187 2007-07-13 17:54 MySchool\CreateUserForm.resx
文件 3140 2008-01-08 09:24 MySchool\EditStudentForm.cs
文件 11119 2007-07-24 18:23 MySchool\EditStudentForm.Designer.cs
文件 5814 2007-07-24 18:23 MySchool\EditStudentForm.resx
文件 3909 2007-12-17 11:18 MySchool\LoginForm.cs
............此处省略264个文件信息
- 上一篇:IDL编程技术PDF
- 下一篇:QT5各类控件合集包好常用(QML)
评论
共有 条评论