You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
3.4 KiB
87 lines
3.4 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
|
|
namespace ICSharpCode.SharpDevelop.Gui |
|
{ |
|
partial class AsynchronousWaitDialogForm : System.Windows.Forms.Form |
|
{ |
|
/// <summary> |
|
/// Designer variable used to keep track of non-visual components. |
|
/// </summary> |
|
private System.ComponentModel.IContainer components = null; |
|
|
|
/// <summary> |
|
/// Disposes resources used by the form. |
|
/// </summary> |
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
|
protected override void Dispose(bool disposing) |
|
{ |
|
if (disposing) { |
|
if (components != null) { |
|
components.Dispose(); |
|
} |
|
} |
|
base.Dispose(disposing); |
|
} |
|
|
|
/// <summary> |
|
/// This method is required for Windows Forms designer support. |
|
/// Do not change the method contents inside the source code editor. The Forms designer might |
|
/// not be able to load this method if it was changed manually. |
|
/// </summary> |
|
private void InitializeComponent() |
|
{ |
|
this.taskLabel = new System.Windows.Forms.Label(); |
|
this.progressBar = new System.Windows.Forms.ProgressBar(); |
|
this.cancelButton = new System.Windows.Forms.Button(); |
|
this.SuspendLayout(); |
|
// |
|
// taskLabel |
|
// |
|
this.taskLabel.Location = new System.Drawing.Point(12, 9); |
|
this.taskLabel.Name = "taskLabel"; |
|
this.taskLabel.Size = new System.Drawing.Size(311, 46); |
|
this.taskLabel.TabIndex = 0; |
|
this.taskLabel.Text = "Please wait..."; |
|
this.taskLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
// |
|
// progressBar |
|
// |
|
this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) |
|
| System.Windows.Forms.AnchorStyles.Right))); |
|
this.progressBar.Location = new System.Drawing.Point(12, 58); |
|
this.progressBar.Name = "progressBar"; |
|
this.progressBar.Size = new System.Drawing.Size(235, 22); |
|
this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee; |
|
this.progressBar.TabIndex = 1; |
|
// |
|
// cancelButton |
|
// |
|
this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); |
|
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; |
|
this.cancelButton.Location = new System.Drawing.Point(253, 58); |
|
this.cancelButton.Name = "cancelButton"; |
|
this.cancelButton.Size = new System.Drawing.Size(75, 23); |
|
this.cancelButton.TabIndex = 2; |
|
this.cancelButton.Text = "button1"; |
|
this.cancelButton.UseVisualStyleBackColor = true; |
|
// |
|
// AsynchronousWaitDialogForm |
|
// |
|
this.CancelButton = this.cancelButton; |
|
this.ClientSize = new System.Drawing.Size(336, 87); |
|
this.ControlBox = false; |
|
this.Controls.Add(this.cancelButton); |
|
this.Controls.Add(this.progressBar); |
|
this.Controls.Add(this.taskLabel); |
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; |
|
this.Name = "AsynchronousWaitDialogForm"; |
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; |
|
this.Text = "AsynchronousWaitDialog"; |
|
this.ResumeLayout(false); |
|
} |
|
internal System.Windows.Forms.Button cancelButton; |
|
internal System.Windows.Forms.ProgressBar progressBar; |
|
internal System.Windows.Forms.Label taskLabel; |
|
} |
|
}
|
|
|