资源简介
酒店管理系统+C#+三层架构及抽象工厂+winform程序酒店管理系统+C#+三层架构及抽象工厂+winform程序
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace HotelManager
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
}
RoomTypeForm rt = new RoomTypeForm();
private void tsmiRoomTypeSetup_Click(object sender EventArgs e)
{
if (rt.IsDisposed)
{
rt = new RoomTypeForm();
}
rt.MdiParent = this;
rt.Show();
}
private void tsmiExitSystem_Click(object sender EventArgs e)
{
Application.Exit();
}
RoomForm rf = new RoomForm();
private void tsmiRoomInfoSetup_Click(object sender EventArgs e)
{
if (rf.IsDisposed)
{
rf = new RoomForm();
}
rf.MdiParent = this;
rf.Show();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 310 2009-08-08 11:49 HotelManager\HotelManager\App.config
文件 53248 2009-08-10 17:20 HotelManager\HotelManager\bin\Debug\HotelManager.exe
文件 310 2009-08-08 11:49 HotelManager\HotelManager\bin\Debug\HotelManager.exe.config
文件 52736 2009-08-10 17:20 HotelManager\HotelManager\bin\Debug\HotelManager.pdb
文件 5632 2005-11-11 22:25 HotelManager\HotelManager\bin\Debug\HotelManager.vshost.exe
文件 310 2009-08-08 11:49 HotelManager\HotelManager\bin\Debug\HotelManager.vshost.exe.config
文件 16384 2009-08-10 16:54 HotelManager\HotelManager\bin\Debug\HotelManagerBLL.dll
文件 19968 2009-08-10 16:54 HotelManager\HotelManager\bin\Debug\HotelManagerBLL.pdb
文件 24576 2009-08-10 16:53 HotelManager\HotelManager\bin\Debug\HotelManagerDAL.dll
文件 36352 2009-08-10 16:53 HotelManager\HotelManager\bin\Debug\HotelManagerDAL.pdb
文件 16384 2009-08-10 16:53 HotelManager\HotelManager\bin\Debug\HotelManagerDALFactory.dll
文件 17920 2009-08-10 16:53 HotelManager\HotelManager\bin\Debug\HotelManagerDALFactory.pdb
文件 16384 2009-08-10 11:54 HotelManager\HotelManager\bin\Debug\HotelManagerIDAL.dll
文件 7680 2009-08-10 11:54 HotelManager\HotelManager\bin\Debug\HotelManagerIDAL.pdb
文件 16384 2009-08-09 20:31 HotelManager\HotelManager\bin\Debug\HotelManagerModels.dll
文件 24064 2009-08-09 20:31 HotelManager\HotelManager\bin\Debug\HotelManagerModels.pdb
文件 1078 2007-09-14 13:47 HotelManager\HotelManager\bin\Debug\images\hotel.ico
文件 246 2007-09-14 13:47 HotelManager\HotelManager\bin\Debug\images\上记录.bmp
文件 246 2007-09-14 13:47 HotelManager\HotelManager\bin\Debug\images\下记录.bmp
文件 246 2007-09-14 13:47 HotelManager\HotelManager\bin\Debug\images\保存.bmp
文件 246 2007-09-14 13:47 HotelManager\HotelManager\bin\Debug\images\修改.bmp
文件 246 2007-09-14 13:47 HotelManager\HotelManager\bin\Debug\images\删除.bmp
文件 246 2007-09-14 13:47 HotelManager\HotelManager\bin\Debug\images\取消.bmp
文件 246 2007-09-14 13:47 HotelManager\HotelManager\bin\Debug\images\尾记录.bmp
文件 246 2007-09-14 13:47 HotelManager\HotelManager\bin\Debug\images\搜索.bmp
文件 246 2007-09-14 13:47 HotelManager\HotelManager\bin\Debug\images\新增.bmp
文件 246 2007-09-14 13:47 HotelManager\HotelManager\bin\Debug\images\查询选择.bmp
文件 246 2007-09-14 13:47 HotelManager\HotelManager\bin\Debug\images\计算.bmp
文件 1322 2007-09-14 14:28 HotelManager\HotelManager\bin\Debug\images\退出.BMP
文件 246 2007-09-14 13:47 HotelManager\HotelManager\bin\Debug\images\首记录.bmp
............此处省略170个文件信息
评论
共有 条评论