亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? booksinfo.cs

?? 圖書館信息管理系統(tǒng) Library Information Management System
?? CS
?? 第 1 頁 / 共 2 頁
字號(hào):
using System;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace Library
{
	/// <summary>
	/// BooksInfo 的摘要說明。
	/// </summary>
	public class BooksInfo : System.Windows.Forms.Form
	{
		#region Private Forms
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.Button btnClose;
		private System.Windows.Forms.GroupBox groupBox3;
		private System.Windows.Forms.TextBox textBox1;
		private System.Windows.Forms.Button btnSearch;
		private System.Windows.Forms.Button btnRefresh;
		private System.Windows.Forms.Button btnBuyBooks;
		private System.Windows.Forms.Button btnExcel;
		private System.Windows.Forms.Button btnEdit;
		private System.Windows.Forms.Button btnDelete;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.ComboBox comboBox1;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.RadioButton radioButton1;
		private System.Windows.Forms.RadioButton radioButton2;
		private System.Windows.Forms.ListView listView1;
		/// <summary>
		/// 必需的設(shè)計(jì)器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;
		#endregion

		private SqlCommand cmd = null;
		//private SqlDataReader dr = null;
		private DataTable tableTemp = null;

		public BooksInfo()
		{
			//
			// Windows 窗體設(shè)計(jì)器支持所必需的
			//
			InitializeComponent();
			//
			//Table
			//
			tableTemp = GetData();
			textBox1.Text = "";
			radioButton1.Checked = true;
			ListViewItem item = null;
			int colIndex=0;
			//tableTemp = GetData();
     
			//將所得到的表的列名,賦值給單元格
			foreach(DataColumn col in tableTemp.Columns)
			{
				colIndex++;
				listView1.Columns.Add(col.ColumnName,-2,HorizontalAlignment.Left);
				comboBox1.Items.Add(col.ColumnName);
			}
			//同樣方法處理數(shù)據(jù)
			foreach(DataRow row in tableTemp.Rows)
			{
				colIndex=0;
				item = new ListViewItem(row[0].ToString());
				for(colIndex= 1;colIndex<tableTemp.Columns.Count;colIndex++)
				{
					item.SubItems.Add(row[colIndex].ToString());
				}
				listView1.Items.Add(item);
			}
		}

		/// <summary>
		/// 清理所有正在使用的資源。
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(tableTemp!=null)
				{
					tableTemp.Dispose();
				}
				if(cmd!=null)
				{
					cmd.Dispose();
				}
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows 窗體設(shè)計(jì)器生成的代碼
		/// <summary>
		/// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </summary>
		private void InitializeComponent()
		{
			this.label1 = new System.Windows.Forms.Label();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.listView1 = new System.Windows.Forms.ListView();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.btnDelete = new System.Windows.Forms.Button();
			this.btnEdit = new System.Windows.Forms.Button();
			this.btnBuyBooks = new System.Windows.Forms.Button();
			this.btnRefresh = new System.Windows.Forms.Button();
			this.btnClose = new System.Windows.Forms.Button();
			this.btnExcel = new System.Windows.Forms.Button();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.comboBox1 = new System.Windows.Forms.ComboBox();
			this.radioButton2 = new System.Windows.Forms.RadioButton();
			this.radioButton1 = new System.Windows.Forms.RadioButton();
			this.label3 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.btnSearch = new System.Windows.Forms.Button();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.groupBox1.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.groupBox3.SuspendLayout();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.BackColor = System.Drawing.Color.WhiteSmoke;
			this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.label1.Font = new System.Drawing.Font("宋體", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label1.ForeColor = System.Drawing.Color.Black;
			this.label1.Location = new System.Drawing.Point(289, 16);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(216, 23);
			this.label1.TabIndex = 0;
			this.label1.Text = "圖   書   資  料";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.listView1);
			this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox1.Location = new System.Drawing.Point(8, 48);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(776, 312);
			this.groupBox1.TabIndex = 1;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "已入庫圖書";
			// 
			// listView1
			// 
			this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.listView1.FullRowSelect = true;
			this.listView1.GridLines = true;
			this.listView1.Location = new System.Drawing.Point(3, 17);
			this.listView1.MultiSelect = false;
			this.listView1.Name = "listView1";
			this.listView1.Size = new System.Drawing.Size(770, 292);
			this.listView1.Sorting = System.Windows.Forms.SortOrder.Descending;
			this.listView1.TabIndex = 0;
			this.listView1.View = System.Windows.Forms.View.Details;
			this.listView1.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
			this.listView1.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView1_ColumnClick);
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.btnDelete);
			this.groupBox2.Controls.Add(this.btnEdit);
			this.groupBox2.Controls.Add(this.btnBuyBooks);
			this.groupBox2.Controls.Add(this.btnRefresh);
			this.groupBox2.Controls.Add(this.btnClose);
			this.groupBox2.Controls.Add(this.btnExcel);
			this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox2.Location = new System.Drawing.Point(448, 376);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(312, 112);
			this.groupBox2.TabIndex = 2;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "導(dǎo)航";
			// 
			// btnDelete
			// 
			this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnDelete.Location = new System.Drawing.Point(207, 32);
			this.btnDelete.Name = "btnDelete";
			this.btnDelete.Size = new System.Drawing.Size(82, 23);
			this.btnDelete.TabIndex = 8;
			this.btnDelete.Text = "刪除";
			this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
			// 
			// btnEdit
			// 
			this.btnEdit.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnEdit.Location = new System.Drawing.Point(115, 32);
			this.btnEdit.Name = "btnEdit";
			this.btnEdit.Size = new System.Drawing.Size(82, 23);
			this.btnEdit.TabIndex = 7;
			this.btnEdit.Text = "修改";
			this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
			// 
			// btnBuyBooks
			// 
			this.btnBuyBooks.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnBuyBooks.Location = new System.Drawing.Point(23, 32);
			this.btnBuyBooks.Name = "btnBuyBooks";
			this.btnBuyBooks.Size = new System.Drawing.Size(82, 23);
			this.btnBuyBooks.TabIndex = 6;
			this.btnBuyBooks.Text = "新添";
			this.btnBuyBooks.Click += new System.EventHandler(this.btnBuyBooks_Click);
			// 
			// btnRefresh
			// 
			this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnRefresh.Location = new System.Drawing.Point(115, 72);
			this.btnRefresh.Name = "btnRefresh";
			this.btnRefresh.Size = new System.Drawing.Size(82, 23);
			this.btnRefresh.TabIndex = 5;
			this.btnRefresh.Text = "重置";
			this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
			// 
			// btnClose
			// 
			this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnClose.Location = new System.Drawing.Point(207, 72);
			this.btnClose.Name = "btnClose";
			this.btnClose.Size = new System.Drawing.Size(82, 23);
			this.btnClose.TabIndex = 4;
			this.btnClose.Text = "關(guān)閉";
			this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
			// 
			// btnExcel
			// 
			this.btnExcel.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnExcel.Location = new System.Drawing.Point(23, 72);
			this.btnExcel.Name = "btnExcel";
			this.btnExcel.Size = new System.Drawing.Size(82, 23);
			this.btnExcel.TabIndex = 0;
			this.btnExcel.Text = "導(dǎo)出至Excel";
			this.btnExcel.Click += new System.EventHandler(this.btnExcel_Click);
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.comboBox1);
			this.groupBox3.Controls.Add(this.radioButton2);
			this.groupBox3.Controls.Add(this.radioButton1);
			this.groupBox3.Controls.Add(this.label3);
			this.groupBox3.Controls.Add(this.label2);
			this.groupBox3.Controls.Add(this.btnSearch);
			this.groupBox3.Controls.Add(this.textBox1);
			this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.groupBox3.Location = new System.Drawing.Point(24, 376);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(416, 112);
			this.groupBox3.TabIndex = 3;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "查詢記錄";
			// 
			// comboBox1
			// 
			this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboBox1.Location = new System.Drawing.Point(104, 32);
			this.comboBox1.Name = "comboBox1";
			this.comboBox1.Size = new System.Drawing.Size(121, 20);
			this.comboBox1.TabIndex = 6;
			// 
			// radioButton2
			// 
			this.radioButton2.Location = new System.Drawing.Point(320, 32);
			this.radioButton2.Name = "radioButton2";
			this.radioButton2.Size = new System.Drawing.Size(72, 24);
			this.radioButton2.TabIndex = 9;
			this.radioButton2.Text = "模糊查詢";
			// 
			// radioButton1
			// 
			this.radioButton1.Checked = true;
			this.radioButton1.Location = new System.Drawing.Point(240, 32);
			this.radioButton1.Name = "radioButton1";
			this.radioButton1.Size = new System.Drawing.Size(72, 24);
			this.radioButton1.TabIndex = 8;
			this.radioButton1.TabStop = true;
			this.radioButton1.Text = "精確查詢";
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Location = new System.Drawing.Point(24, 72);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(66, 17);
			this.label3.TabIndex = 7;
			this.label3.Text = "查詢條件:";
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Location = new System.Drawing.Point(24, 32);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(66, 17);
			this.label2.TabIndex = 5;
			this.label2.Text = "查詢依據(jù):";
			// 
			// btnSearch
			// 
			this.btnSearch.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.btnSearch.Location = new System.Drawing.Point(336, 72);
			this.btnSearch.Name = "btnSearch";
			this.btnSearch.Size = new System.Drawing.Size(56, 23);
			this.btnSearch.TabIndex = 4;
			this.btnSearch.Text = "查詢";
			this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
			// 
			// textBox1
			// 
			this.textBox1.Location = new System.Drawing.Point(104, 72);
			this.textBox1.Name = "textBox1";
			this.textBox1.Size = new System.Drawing.Size(208, 21);
			this.textBox1.TabIndex = 3;
			this.textBox1.Text = "";
			this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
			// 
			// BooksInfo
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.ClientSize = new System.Drawing.Size(790, 503);
			this.ControlBox = false;
			this.Controls.Add(this.groupBox3);
			this.Controls.Add(this.groupBox2);
			this.Controls.Add(this.groupBox1);

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色综合中文字幕国产 | 欧美色国产精品| 成人av网在线| 国产91露脸合集magnet| 国产麻豆精品久久一二三| 国内精品免费**视频| 久久精品国产精品亚洲精品| 免费人成在线不卡| 麻豆国产精品官网| 精品一区二区成人精品| 国产一区二区三区蝌蚪| 国产成人自拍网| 国产成人精品综合在线观看| 国产.欧美.日韩| av一区二区三区在线| 91丨porny丨在线| 91国偷自产一区二区开放时间 | 日韩中文字幕麻豆| 免费观看日韩av| 国产美女在线观看一区| 看电影不卡的网站| 亚洲一区视频在线| 秋霞影院一区二区| 欧美96一区二区免费视频| 亚洲成av人综合在线观看| 午夜电影网亚洲视频| 日韩高清不卡在线| 精品午夜久久福利影院| 国产精品一区二区久久不卡| 成人午夜在线视频| 91国偷自产一区二区三区成为亚洲经典 | 欧洲在线/亚洲| 欧美精品 国产精品| 精品国产乱码久久| 日本一区二区在线不卡| 一区二区久久久| 美国毛片一区二区| 粉嫩久久99精品久久久久久夜| 91在线国产福利| 婷婷六月综合网| 亚洲永久精品国产| 日韩国产欧美三级| 国内精品久久久久影院色| av网站一区二区三区| 欧美另类变人与禽xxxxx| 久久综合久久鬼色中文字| 国产精品久久久久一区| 亚洲国产sm捆绑调教视频| 男女男精品网站| 顶级嫩模精品视频在线看| 日本精品裸体写真集在线观看| 欧美一区二区三区思思人| 国产三级一区二区三区| 一区二区三区精品在线观看| 人人狠狠综合久久亚洲| 99久久免费国产| 欧美一级久久久久久久大片| 国产精品久久看| 麻豆成人在线观看| 色综合欧美在线视频区| 精品成人一区二区三区四区| 亚洲欧美日韩在线| 国产最新精品精品你懂的| 91成人网在线| 日本一区二区成人| 日韩欧美中文字幕公布| 亚洲国产经典视频| 蜜臀av性久久久久蜜臀aⅴ流畅| 91香蕉视频mp4| 精品乱人伦一区二区三区| 亚洲综合久久av| 成人一区二区三区视频在线观看| 欧美日韩国产综合一区二区三区| 中文子幕无线码一区tr| 看片网站欧美日韩| 欧美日韩精品专区| 最新日韩在线视频| 国产99一区视频免费| 日韩一区国产二区欧美三区| 一区二区三区日韩精品视频| voyeur盗摄精品| 欧美精品一区二区三区很污很色的 | 欧美三级在线视频| √…a在线天堂一区| 国产一区二区免费看| 91精品国产乱码久久蜜臀| 亚洲精品伦理在线| 99久久精品免费| 国产女人aaa级久久久级 | 国产不卡在线播放| 亚洲精品一区二区三区99| 日韩高清不卡一区| 欧美日韩在线一区二区| 亚洲自拍与偷拍| 色婷婷综合在线| 亚洲你懂的在线视频| 成人av第一页| 欧美国产日韩精品免费观看| 国产精品一区二区在线观看网站| 欧美一区二区三区公司| 日韩精品一二三四| 777xxx欧美| 老司机免费视频一区二区| 欧美一区二区三区公司| 美女视频一区二区三区| 日韩一区二区三区四区| 麻豆视频一区二区| wwwwxxxxx欧美| 国产精品亚洲一区二区三区妖精 | 99视频精品免费视频| 国产精品私房写真福利视频| 国产成人高清视频| 中文一区在线播放| 成人一区二区三区中文字幕| 国产精品三级视频| 91香蕉视频污| 性做久久久久久免费观看| 777午夜精品免费视频| 捆绑调教美女网站视频一区| 久久综合国产精品| 国产91丝袜在线播放九色| 中文字幕在线不卡一区二区三区| 99精品欧美一区二区三区小说| 亚洲人成精品久久久久| 欧美性极品少妇| 免费观看30秒视频久久| 久久久综合精品| 91麻豆自制传媒国产之光| 午夜精品久久久久久久久久| 91精品综合久久久久久| 国产精品资源网站| 亚洲人吸女人奶水| 欧美剧情片在线观看| 久久精品二区亚洲w码| 欧美激情在线一区二区| 色婷婷久久99综合精品jk白丝 | 欧美三级日韩在线| 另类小说图片综合网| 国产精品婷婷午夜在线观看| 欧美亚洲综合一区| 狠狠久久亚洲欧美| 亚洲欧美区自拍先锋| 日韩一区二区中文字幕| www.综合网.com| 国产成人h网站| 亚洲精品久久久久久国产精华液| 91超碰这里只有精品国产| 国产精品123| 性久久久久久久久| 欧美国产视频在线| 欧美女孩性生活视频| 粉嫩av一区二区三区粉嫩 | 国产在线观看免费一区| 自拍偷拍国产亚洲| 日韩欧美一区电影| bt欧美亚洲午夜电影天堂| 亚洲成a人在线观看| 日本一区二区电影| 欧美一区二区三区在线看| av在线不卡免费看| 精品一区二区免费看| 亚洲国产精品久久艾草纯爱| 国产丝袜欧美中文另类| 91.com在线观看| 91网页版在线| 国内精品视频666| 污片在线观看一区二区| 亚洲欧洲无码一区二区三区| 欧美变态口味重另类| 欧美最猛性xxxxx直播| 丰满放荡岳乱妇91ww| 日本不卡一二三区黄网| 亚洲黄色在线视频| 国产精品网曝门| 久久综合成人精品亚洲另类欧美| 欧美三级在线看| 一本色道亚洲精品aⅴ| 国产成人啪午夜精品网站男同| 午夜精品久久久久影视| 亚洲黄色片在线观看| 18成人在线视频| 久久久久99精品国产片| 日韩视频在线一区二区| 精品视频999| 色综合天天在线| 成人精品小蝌蚪| 国产一区二区三区四区五区美女| 午夜电影久久久| 日韩欧美专区在线| 国产成人av电影在线观看| 日韩av中文在线观看| 亚洲综合区在线| 亚洲免费观看高清完整| 国产精品久久毛片av大全日韩| 久久久久久免费网| 久久久午夜电影| 国产亚洲精品福利| 亚洲精品一线二线三线| 日韩三级精品电影久久久 | 亚洲国产欧美在线|