?? frmbookclassmanager.designer.cs
字號:
//
// bindingNavigatorSeparator1
//
this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
//
// bindingNavigatorMoveNextItem
//
this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMoveNextItem.Text = "移到下一條記錄";
//
// bindingNavigatorMoveLastItem
//
this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
this.bindingNavigatorMoveLastItem.Text = "移到最后一條記錄";
//
// bindingNavigatorSeparator2
//
this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
//
// bigClassOfBookBindingNavigatorSaveItem
//
this.bigClassOfBookBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.bigClassOfBookBindingNavigatorSaveItem.Image = ((System.Drawing.Image)(resources.GetObject("bigClassOfBookBindingNavigatorSaveItem.Image")));
this.bigClassOfBookBindingNavigatorSaveItem.Name = "bigClassOfBookBindingNavigatorSaveItem";
this.bigClassOfBookBindingNavigatorSaveItem.Size = new System.Drawing.Size(23, 22);
this.bigClassOfBookBindingNavigatorSaveItem.Text = "保存數據";
this.bigClassOfBookBindingNavigatorSaveItem.Click += new System.EventHandler(this.bigClassOfBookBindingNavigatorSaveItem_Click);
//
// bigClassOfBookListBox
//
this.bigClassOfBookListBox.DataSource = this.bigClassOfBookBindingSource;
this.bigClassOfBookListBox.DisplayMember = "大類";
this.bigClassOfBookListBox.Dock = System.Windows.Forms.DockStyle.Left;
this.bigClassOfBookListBox.ItemHeight = 12;
this.bigClassOfBookListBox.Location = new System.Drawing.Point(0, 25);
this.bigClassOfBookListBox.Name = "bigClassOfBookListBox";
this.bigClassOfBookListBox.Size = new System.Drawing.Size(91, 244);
this.bigClassOfBookListBox.TabIndex = 1;
this.bigClassOfBookListBox.ValueMember = "大類";
this.bigClassOfBookListBox.SelectedIndexChanged += new System.EventHandler(this.bigClassOfBookListBox_SelectedIndexChanged);
//
// 大類TextBox
//
this.大類TextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bigClassOfBookBindingSource, "大類", true));
this.大類TextBox.Location = new System.Drawing.Point(138, 33);
this.大類TextBox.Name = "大類TextBox";
this.大類TextBox.Size = new System.Drawing.Size(100, 21);
this.大類TextBox.TabIndex = 3;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(97, 70);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 12);
this.label1.TabIndex = 4;
this.label1.Text = "小類:";
//
// SmallClasslistBox
//
this.SmallClasslistBox.FormattingEnabled = true;
this.SmallClasslistBox.ItemHeight = 12;
this.SmallClasslistBox.Location = new System.Drawing.Point(138, 70);
this.SmallClasslistBox.Name = "SmallClasslistBox";
this.SmallClasslistBox.Size = new System.Drawing.Size(100, 28);
this.SmallClasslistBox.TabIndex = 5;
//
// smallClassOfBookBindingSource
//
this.smallClassOfBookBindingSource.DataMember = "SmallClassOfBook";
this.smallClassOfBookBindingSource.DataSource = this.mydata2DataSet;
//
// smallClassOfBookTableAdapter
//
this.smallClassOfBookTableAdapter.ClearBeforeFill = true;
//
// AddBtn
//
this.AddBtn.Location = new System.Drawing.Point(256, 70);
this.AddBtn.Name = "AddBtn";
this.AddBtn.Size = new System.Drawing.Size(75, 29);
this.AddBtn.TabIndex = 10;
this.AddBtn.Text = "添加(小類)";
this.AddBtn.UseVisualStyleBackColor = true;
this.AddBtn.Click += new System.EventHandler(this.AddBtn_Click);
//
// deleteBtn
//
this.deleteBtn.Location = new System.Drawing.Point(256, 133);
this.deleteBtn.Name = "deleteBtn";
this.deleteBtn.Size = new System.Drawing.Size(75, 29);
this.deleteBtn.TabIndex = 9;
this.deleteBtn.Text = "刪除(小類)";
this.deleteBtn.UseVisualStyleBackColor = true;
this.deleteBtn.Click += new System.EventHandler(this.deleteBtn_Click);
//
// MotifyBtn
//
this.MotifyBtn.Location = new System.Drawing.Point(256, 199);
this.MotifyBtn.Name = "MotifyBtn";
this.MotifyBtn.Size = new System.Drawing.Size(75, 29);
this.MotifyBtn.TabIndex = 7;
this.MotifyBtn.Text = "修改(小類)";
this.MotifyBtn.UseVisualStyleBackColor = true;
this.MotifyBtn.Click += new System.EventHandler(this.MotifyBtn_Click);
//
// frmBookClassManager
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.WhiteSmoke;
this.ClientSize = new System.Drawing.Size(362, 279);
this.Controls.Add(this.AddBtn);
this.Controls.Add(this.deleteBtn);
this.Controls.Add(this.MotifyBtn);
this.Controls.Add(this.SmallClasslistBox);
this.Controls.Add(this.label1);
this.Controls.Add(大類Label);
this.Controls.Add(this.大類TextBox);
this.Controls.Add(this.bigClassOfBookListBox);
this.Controls.Add(this.bigClassOfBookBindingNavigator);
this.Name = "frmBookClassManager";
this.Text = "書籍類別管理";
this.Load += new System.EventHandler(this.frmBookClassManager_Load);
((System.ComponentModel.ISupportInitialize)(this.mydata2DataSet)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bigClassOfBookBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bigClassOfBookBindingNavigator)).EndInit();
this.bigClassOfBookBindingNavigator.ResumeLayout(false);
this.bigClassOfBookBindingNavigator.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.smallClassOfBookBindingSource)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Mydata2DataSet mydata2DataSet;
private System.Windows.Forms.BindingSource bigClassOfBookBindingSource;
private BookManagementSystem.Mydata2DataSetTableAdapters.BigClassOfBookTableAdapter bigClassOfBookTableAdapter;
private System.Windows.Forms.BindingNavigator bigClassOfBookBindingNavigator;
private System.Windows.Forms.ToolStripButton bindingNavigatorAddNewItem;
private System.Windows.Forms.ToolStripLabel bindingNavigatorCountItem;
private System.Windows.Forms.ToolStripButton bindingNavigatorDeleteItem;
private System.Windows.Forms.ToolStripButton bindingNavigatorMoveFirstItem;
private System.Windows.Forms.ToolStripButton bindingNavigatorMovePreviousItem;
private System.Windows.Forms.ToolStripSeparator bindingNavigatorSeparator;
private System.Windows.Forms.ToolStripTextBox bindingNavigatorPositionItem;
private System.Windows.Forms.ToolStripSeparator bindingNavigatorSeparator1;
private System.Windows.Forms.ToolStripButton bindingNavigatorMoveNextItem;
private System.Windows.Forms.ToolStripButton bindingNavigatorMoveLastItem;
private System.Windows.Forms.ToolStripSeparator bindingNavigatorSeparator2;
private System.Windows.Forms.ToolStripButton bigClassOfBookBindingNavigatorSaveItem;
private System.Windows.Forms.ListBox bigClassOfBookListBox;
private System.Windows.Forms.TextBox 大類TextBox;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ListBox SmallClasslistBox;
private System.Windows.Forms.BindingSource smallClassOfBookBindingSource;
private BookManagementSystem.Mydata2DataSetTableAdapters.SmallClassOfBookTableAdapter smallClassOfBookTableAdapter;
private System.Windows.Forms.Button AddBtn;
private System.Windows.Forms.Button deleteBtn;
private System.Windows.Forms.Button MotifyBtn;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -