📄 frmserverproperties.designer.cs
字号:
namespace SMODemos
{
partial class frmServerProperties
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.DBPropLabel = new System.Windows.Forms.Label();
this.chkSystemDB = new System.Windows.Forms.CheckBox();
this.btnSSPI = new System.Windows.Forms.Button();
this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
this.cboDatabase = new System.Windows.Forms.ComboBox();
this.lblDatabase = new System.Windows.Forms.Label();
this.cboServers = new System.Windows.Forms.ComboBox();
this.lblServer = new System.Windows.Forms.Label();
this.lblSearch = new System.Windows.Forms.Label();
this.btnSearch = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// DBPropLabel
//
this.DBPropLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.DBPropLabel.AutoSize = true;
this.DBPropLabel.Location = new System.Drawing.Point(30, 161);
this.DBPropLabel.Name = "DBPropLabel";
this.DBPropLabel.Size = new System.Drawing.Size(0, 13);
this.DBPropLabel.TabIndex = 15;
//
// chkSystemDB
//
this.chkSystemDB.AutoSize = true;
this.chkSystemDB.Enabled = false;
this.chkSystemDB.Location = new System.Drawing.Point(30, 141);
this.chkSystemDB.Name = "chkSystemDB";
this.chkSystemDB.Size = new System.Drawing.Size(108, 17);
this.chkSystemDB.TabIndex = 14;
this.chkSystemDB.Text = "Show System DB";
this.chkSystemDB.CheckedChanged += new System.EventHandler(this.CheckSystemDB_CheckedChanged);
//
// btnSSPI
//
this.btnSSPI.Location = new System.Drawing.Point(210, 58);
this.btnSSPI.Name = "btnSSPI";
this.btnSSPI.Size = new System.Drawing.Size(75, 23);
this.btnSSPI.TabIndex = 13;
this.btnSSPI.Text = "Connect";
this.btnSSPI.Click += new System.EventHandler(this.btnConnect_Click);
//
// propertyGrid1
//
this.propertyGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.propertyGrid1.HelpVisible = false;
this.propertyGrid1.Location = new System.Drawing.Point(314, 12);
this.propertyGrid1.Margin = new System.Windows.Forms.Padding(3, 1, 3, 3);
this.propertyGrid1.Name = "propertyGrid1";
this.propertyGrid1.Size = new System.Drawing.Size(390, 334);
this.propertyGrid1.TabIndex = 12;
this.propertyGrid1.ToolbarVisible = false;
//
// cboDatabase
//
this.cboDatabase.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboDatabase.Enabled = false;
this.cboDatabase.FormattingEnabled = true;
this.cboDatabase.Location = new System.Drawing.Point(30, 113);
this.cboDatabase.Name = "cboDatabase";
this.cboDatabase.Size = new System.Drawing.Size(255, 21);
this.cboDatabase.TabIndex = 11;
this.cboDatabase.SelectedIndexChanged += new System.EventHandler(this.comboDB_SelectedIndexChanged);
//
// lblDatabase
//
this.lblDatabase.AutoSize = true;
this.lblDatabase.Location = new System.Drawing.Point(30, 95);
this.lblDatabase.Name = "lblDatabase";
this.lblDatabase.Size = new System.Drawing.Size(53, 13);
this.lblDatabase.TabIndex = 10;
this.lblDatabase.Text = "&Database";
//
// cboServers
//
this.cboServers.FormattingEnabled = true;
this.cboServers.Location = new System.Drawing.Point(30, 60);
this.cboServers.Margin = new System.Windows.Forms.Padding(3, 1, 3, 3);
this.cboServers.Name = "cboServers";
this.cboServers.Size = new System.Drawing.Size(174, 21);
this.cboServers.TabIndex = 9;
this.cboServers.SelectedIndexChanged += new System.EventHandler(this.comboDB_SelectedIndexChanged);
//
// lblServer
//
this.lblServer.AutoSize = true;
this.lblServer.Location = new System.Drawing.Point(30, 43);
this.lblServer.Margin = new System.Windows.Forms.Padding(3, 3, 3, 2);
this.lblServer.Name = "lblServer";
this.lblServer.Size = new System.Drawing.Size(41, 13);
this.lblServer.TabIndex = 8;
this.lblServer.Text = "&Server:";
//
// lblSearch
//
this.lblSearch.AutoSize = true;
this.lblSearch.Location = new System.Drawing.Point(28, 12);
this.lblSearch.Name = "lblSearch";
this.lblSearch.Size = new System.Drawing.Size(138, 13);
this.lblSearch.TabIndex = 17;
this.lblSearch.Text = "Search for Network Servers";
//
// btnSearch
//
this.btnSearch.Location = new System.Drawing.Point(171, 12);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(75, 23);
this.btnSearch.TabIndex = 16;
this.btnSearch.Text = "Search";
this.btnSearch.Click += new System.EventHandler(this.button1_Click);
//
// frmServerProperties
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(729, 358);
this.Controls.Add(this.lblSearch);
this.Controls.Add(this.btnSearch);
this.Controls.Add(this.DBPropLabel);
this.Controls.Add(this.chkSystemDB);
this.Controls.Add(this.btnSSPI);
this.Controls.Add(this.propertyGrid1);
this.Controls.Add(this.cboDatabase);
this.Controls.Add(this.lblDatabase);
this.Controls.Add(this.cboServers);
this.Controls.Add(this.lblServer);
this.Name = "frmServerProperties";
this.Text = "Server Properties";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label DBPropLabel;
private System.Windows.Forms.CheckBox chkSystemDB;
private System.Windows.Forms.Button btnSSPI;
private System.Windows.Forms.PropertyGrid propertyGrid1;
private System.Windows.Forms.ComboBox cboDatabase;
private System.Windows.Forms.Label lblDatabase;
private System.Windows.Forms.ComboBox cboServers;
private System.Windows.Forms.Label lblServer;
private System.Windows.Forms.Label lblSearch;
private System.Windows.Forms.Button btnSearch;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -