?? oralcetestform.designer.cs
字號:
?namespace ConnetOracleTest
{
partial class frmOracleTest
{
/// <summary>
/// 必需的設計器變量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的資源。
/// </summary>
/// <param name="disposing">如果應釋放托管資源,為 true;否則為 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗體設計器生成的代碼
/// <summary>
/// 設計器支持所需的方法 - 不要
/// 使用代碼編輯器修改此方法的內容。
/// </summary>
private void InitializeComponent()
{
this.btnExecute = new System.Windows.Forms.Button();
this.dgvData = new System.Windows.Forms.DataGridView();
this.select = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.txtSql = new System.Windows.Forms.TextBox();
this.lblSql = new System.Windows.Forms.Label();
this.btnSearch = new System.Windows.Forms.Button();
this.btnupdate = new System.Windows.Forms.Button();
this.btnDelete = new System.Windows.Forms.Button();
this.btnInsert = new System.Windows.Forms.Button();
this.btnEdit = new System.Windows.Forms.Button();
this.cbSelectAll = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
this.SuspendLayout();
//
// btnExecute
//
this.btnExecute.Location = new System.Drawing.Point(12, 469);
this.btnExecute.Name = "btnExecute";
this.btnExecute.Size = new System.Drawing.Size(75, 23);
this.btnExecute.TabIndex = 0;
this.btnExecute.Text = "插入更新";
this.btnExecute.UseVisualStyleBackColor = true;
this.btnExecute.Click += new System.EventHandler(this.btnExecute_Click);
//
// dgvData
//
this.dgvData.AllowUserToAddRows = false;
this.dgvData.AllowUserToDeleteRows = false;
this.dgvData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.select});
this.dgvData.Location = new System.Drawing.Point(12, 1);
this.dgvData.Name = "dgvData";
this.dgvData.RowTemplate.Height = 23;
this.dgvData.Size = new System.Drawing.Size(768, 346);
this.dgvData.TabIndex = 1;
this.dgvData.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.dgvData_DataBindingComplete);
this.dgvData.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvData_CellValueChanged);
this.dgvData.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvData_RowPostPaint);
this.dgvData.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvData_CellContentClick);
//
// select
//
this.select.Frozen = true;
this.select.HeaderText = "";
this.select.Name = "select";
this.select.Width = 21;
//
// txtSql
//
this.txtSql.Location = new System.Drawing.Point(12, 376);
this.txtSql.Multiline = true;
this.txtSql.Name = "txtSql";
this.txtSql.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtSql.Size = new System.Drawing.Size(768, 87);
this.txtSql.TabIndex = 2;
this.txtSql.TextChanged += new System.EventHandler(this.txtSql_TextChanged);
//
// lblSql
//
this.lblSql.AutoSize = true;
this.lblSql.Location = new System.Drawing.Point(12, 361);
this.lblSql.Name = "lblSql";
this.lblSql.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.lblSql.Size = new System.Drawing.Size(251, 12);
this.lblSql.TabIndex = 3;
this.lblSql.Text = "輸入要執(zhí)行的SQL語句,語句間用分號\";\"隔開";
//
// btnSearch
//
this.btnSearch.Location = new System.Drawing.Point(157, 469);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(75, 23);
this.btnSearch.TabIndex = 4;
this.btnSearch.Text = "查詢";
this.btnSearch.UseVisualStyleBackColor = true;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// btnupdate
//
this.btnupdate.Location = new System.Drawing.Point(288, 469);
this.btnupdate.Name = "btnupdate";
this.btnupdate.Size = new System.Drawing.Size(75, 23);
this.btnupdate.TabIndex = 5;
this.btnupdate.Text = "更新數(shù)據(jù)表";
this.btnupdate.UseVisualStyleBackColor = true;
this.btnupdate.Click += new System.EventHandler(this.btnupdate_Click);
//
// btnDelete
//
this.btnDelete.Location = new System.Drawing.Point(386, 469);
this.btnDelete.Name = "btnDelete";
this.btnDelete.Size = new System.Drawing.Size(75, 23);
this.btnDelete.TabIndex = 6;
this.btnDelete.Text = "刪除數(shù)據(jù)";
this.btnDelete.UseVisualStyleBackColor = true;
this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
//
// btnInsert
//
this.btnInsert.Location = new System.Drawing.Point(481, 469);
this.btnInsert.Name = "btnInsert";
this.btnInsert.Size = new System.Drawing.Size(75, 23);
this.btnInsert.TabIndex = 7;
this.btnInsert.Text = "新增";
this.btnInsert.UseVisualStyleBackColor = true;
this.btnInsert.Click += new System.EventHandler(this.btnInsert_Click);
//
// btnEdit
//
this.btnEdit.Location = new System.Drawing.Point(575, 469);
this.btnEdit.Name = "btnEdit";
this.btnEdit.Size = new System.Drawing.Size(75, 23);
this.btnEdit.TabIndex = 7;
this.btnEdit.Text = "修改";
this.btnEdit.UseVisualStyleBackColor = true;
this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
//
// cbSelectAll
//
this.cbSelectAll.AutoSize = true;
this.cbSelectAll.Location = new System.Drawing.Point(57, 4);
this.cbSelectAll.Name = "cbSelectAll";
this.cbSelectAll.Size = new System.Drawing.Size(15, 14);
this.cbSelectAll.TabIndex = 8;
this.cbSelectAll.UseVisualStyleBackColor = true;
this.cbSelectAll.CheckedChanged += new System.EventHandler(this.cbSelectAll_CheckedChanged);
//
// frmOracleTest
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(792, 573);
this.Controls.Add(this.cbSelectAll);
this.Controls.Add(this.btnEdit);
this.Controls.Add(this.btnInsert);
this.Controls.Add(this.btnDelete);
this.Controls.Add(this.btnupdate);
this.Controls.Add(this.btnSearch);
this.Controls.Add(this.lblSql);
this.Controls.Add(this.txtSql);
this.Controls.Add(this.dgvData);
this.Controls.Add(this.btnExecute);
this.Name = "frmOracleTest";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "連接ORACLE測試程序";
this.Load += new System.EventHandler(this.frmOracleTest_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnExecute;
private System.Windows.Forms.DataGridView dgvData;
private System.Windows.Forms.TextBox txtSql;
private System.Windows.Forms.Label lblSql;
private System.Windows.Forms.Button btnSearch;
private System.Windows.Forms.Button btnupdate;
private System.Windows.Forms.Button btnDelete;
private System.Windows.Forms.Button btnInsert;
private System.Windows.Forms.Button btnEdit;
private System.Windows.Forms.CheckBox cbSelectAll;
private System.Windows.Forms.DataGridViewCheckBoxColumn select;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -