?? frmtest.designer.cs
字號:
?namespace IDbAccess
{
partial class FrmTest
{
/// <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.btnOleDbTest = new System.Windows.Forms.Button();
this.btnSqlDbTest = new System.Windows.Forms.Button();
this.btnOraDbTest = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnOleDbTest
//
this.btnOleDbTest.Location = new System.Drawing.Point(164, 44);
this.btnOleDbTest.Name = "btnOleDbTest";
this.btnOleDbTest.Size = new System.Drawing.Size(113, 38);
this.btnOleDbTest.TabIndex = 0;
this.btnOleDbTest.Text = "OleDB測試";
this.btnOleDbTest.UseVisualStyleBackColor = true;
this.btnOleDbTest.Click += new System.EventHandler(this.btnOleDbTest_Click);
//
// btnSqlDbTest
//
this.btnSqlDbTest.Location = new System.Drawing.Point(164, 117);
this.btnSqlDbTest.Name = "btnSqlDbTest";
this.btnSqlDbTest.Size = new System.Drawing.Size(113, 38);
this.btnSqlDbTest.TabIndex = 1;
this.btnSqlDbTest.Text = "SqlDB測試";
this.btnSqlDbTest.UseVisualStyleBackColor = true;
this.btnSqlDbTest.Click += new System.EventHandler(this.btnSqlDbTest_Click);
//
// btnOraDbTest
//
this.btnOraDbTest.Location = new System.Drawing.Point(164, 191);
this.btnOraDbTest.Name = "btnOraDbTest";
this.btnOraDbTest.Size = new System.Drawing.Size(113, 38);
this.btnOraDbTest.TabIndex = 2;
this.btnOraDbTest.Text = "OracleDB測試";
this.btnOraDbTest.UseVisualStyleBackColor = true;
this.btnOraDbTest.Click += new System.EventHandler(this.btnOraDbTest_Click);
//
// FrmTest
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(441, 273);
this.Controls.Add(this.btnOraDbTest);
this.Controls.Add(this.btnSqlDbTest);
this.Controls.Add(this.btnOleDbTest);
this.Name = "FrmTest";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "TEST";
this.Load += new System.EventHandler(this.FrmTest_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnOleDbTest;
private System.Windows.Forms.Button btnSqlDbTest;
private System.Windows.Forms.Button btnOraDbTest;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -