namespace StandardUserInteractionControlsSample {
partial class StandardUserInteractionControlsSampleForm {
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing) {
if( disposing && (components != null) ) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent() {
this.label = new System.Windows.Forms.Label();
this.linkLabel = new System.Windows.Forms.LinkLabel();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripProgressBar = new System.Windows.Forms.ToolStripProgressBar();
this.progressBar = new System.Windows.Forms.ProgressBar();
this.statusStrip1.SuspendLayout();
this.SuspendLayout();
//
// label
//
this.label.AutoSize = true;
this.label.Location = new System.Drawing.Point(12, 9);
this.label.Name = "label";
this.label.Size = new System.Drawing.Size(161, 13);
this.label.TabIndex = 0;
this.label.Text = "This is information for the user...\"";
//
// linkLabel
//
this.linkLabel.AutoSize = true;
this.linkLabel.Location = new System.Drawing.Point(12, 31);
this.linkLabel.Name = "linkLabel";
this.linkLabel.Size = new System.Drawing.Size(55, 13);
this.linkLabel.TabIndex = 1;
this.linkLabel.TabStop = true;
this.linkLabel.Text = "linkLabel1";
this.linkLabel.Click += new System.EventHandler(this.linkLabel_Click);
this.linkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripStatusLabel,
this.toolStripProgressBar});
this.statusStrip1.Location = new System.Drawing.Point(0, 244);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(329, 22);
this.statusStrip1.TabIndex = 2;
this.statusStrip1.Text = "statusStrip1";
//
// toolStripStatusLabel
//
this.toolStripStatusLabel.Name = "toolStripStatusLabel";
this.toolStripStatusLabel.Size = new System.Drawing.Size(212, 17);
this.toolStripStatusLabel.Spring = true;
this.toolStripStatusLabel.Text = "Working...";
this.toolStripStatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// toolStripProgressBar
//
this.toolStripProgressBar.Name = "toolStripProgressBar";
this.toolStripProgressBar.Size = new System.Drawing.Size(100, 16);
//
// progressBar
//
this.progressBar.Location = new System.Drawing.Point(12, 58);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(305, 23);
this.progressBar.TabIndex = 3;
//
// StandardUserInteractionControlsSampleForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(329, 266);
this.Controls.Add(this.progressBar);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.linkLabel);
this.Controls.Add(this.label);
this.Name = "StandardUserInteractionControlsSampleForm";
this.Text = "Standard User Interaction Controls";
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label;
private System.Windows.Forms.LinkLabel linkLabel;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel;
private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar;
private System.Windows.Forms.ProgressBar progressBar;
}
}