📄 dmmviewerdemo.designer.cs
字号:
namespace Chapter20WinClient
{
partial class frmModelViewer
{
/// <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.txtServer = new System.Windows.Forms.TextBox();
this.cboMiningModels = new System.Windows.Forms.ComboBox();
this.lblServer = new System.Windows.Forms.Label();
this.lblDatabases = new System.Windows.Forms.Label();
this.lblMiningModel = new System.Windows.Forms.Label();
this.cboCatalogs = new System.Windows.Forms.ComboBox();
this.btnGetDatabases = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// txtServer
//
this.txtServer.Location = new System.Drawing.Point(63, 12);
this.txtServer.Name = "txtServer";
this.txtServer.Size = new System.Drawing.Size(140, 20);
this.txtServer.TabIndex = 1;
this.txtServer.Text = ".";
//
// cboMiningModels
//
this.cboMiningModels.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboMiningModels.Enabled = false;
this.cboMiningModels.FormattingEnabled = true;
this.cboMiningModels.Location = new System.Drawing.Point(612, 11);
this.cboMiningModels.Name = "cboMiningModels";
this.cboMiningModels.Size = new System.Drawing.Size(163, 21);
this.cboMiningModels.TabIndex = 6;
this.cboMiningModels.SelectedIndexChanged += new System.EventHandler(this.cboMiningModels_SelectedIndexChanged);
//
// lblServer
//
this.lblServer.AutoSize = true;
this.lblServer.Location = new System.Drawing.Point(12, 15);
this.lblServer.Name = "lblServer";
this.lblServer.Size = new System.Drawing.Size(41, 13);
this.lblServer.TabIndex = 0;
this.lblServer.Text = "&Server:";
//
// lblDatabases
//
this.lblDatabases.AutoSize = true;
this.lblDatabases.Enabled = false;
this.lblDatabases.Location = new System.Drawing.Point(312, 14);
this.lblDatabases.Name = "lblDatabases";
this.lblDatabases.Size = new System.Drawing.Size(61, 13);
this.lblDatabases.TabIndex = 3;
this.lblDatabases.Text = "&Databases:";
//
// lblMiningModel
//
this.lblMiningModel.AutoSize = true;
this.lblMiningModel.Enabled = false;
this.lblMiningModel.Location = new System.Drawing.Point(533, 15);
this.lblMiningModel.Name = "lblMiningModel";
this.lblMiningModel.Size = new System.Drawing.Size(73, 13);
this.lblMiningModel.TabIndex = 5;
this.lblMiningModel.Text = "&Mining Model:";
//
// cboCatalogs
//
this.cboCatalogs.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboCatalogs.Enabled = false;
this.cboCatalogs.FormattingEnabled = true;
this.cboCatalogs.Location = new System.Drawing.Point(375, 10);
this.cboCatalogs.Name = "cboCatalogs";
this.cboCatalogs.Size = new System.Drawing.Size(153, 21);
this.cboCatalogs.TabIndex = 4;
this.cboCatalogs.SelectedIndexChanged += new System.EventHandler(this.cboCatalogs_SelectedIndexChanged);
//
// btnGetDatabases
//
this.btnGetDatabases.Location = new System.Drawing.Point(209, 9);
this.btnGetDatabases.Name = "btnGetDatabases";
this.btnGetDatabases.Size = new System.Drawing.Size(102, 23);
this.btnGetDatabases.TabIndex = 2;
this.btnGetDatabases.Text = "S&how Databases";
this.btnGetDatabases.UseVisualStyleBackColor = true;
this.btnGetDatabases.Click += new System.EventHandler(this.btnGetDatabases_Click);
//
// frmModelViewer
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(787, 438);
this.Controls.Add(this.btnGetDatabases);
this.Controls.Add(this.cboCatalogs);
this.Controls.Add(this.lblMiningModel);
this.Controls.Add(this.lblDatabases);
this.Controls.Add(this.lblServer);
this.Controls.Add(this.cboMiningModels);
this.Controls.Add(this.txtServer);
this.Name = "frmModelViewer";
this.Text = "Model Viewer";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Microsoft.AnalysisServices.Viewers.ClusterViewer clvChapter20;
private System.Windows.Forms.TextBox txtServer;
private System.Windows.Forms.ComboBox cboMiningModels;
private System.Windows.Forms.Label lblServer;
private System.Windows.Forms.Label lblDatabases;
private System.Windows.Forms.Label lblMiningModel;
private System.Windows.Forms.ComboBox cboCatalogs;
private System.Windows.Forms.Button btnGetDatabases;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -