⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmtest.designer.cs

📁 多种数据访问接口实现 支持SQL SERVER 2000/2005,Oracle,DB2,Acce
💻 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 + -