84 lines
3.7 KiB
C#
84 lines
3.7 KiB
C#
namespace CoatiSoftware.SourcetrailPlugin.Wizard
|
|
{
|
|
partial class WindowCreateCDB
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WindowCreateCDB));
|
|
this.progressBar = new System.Windows.Forms.ProgressBar();
|
|
this.labelStatus = new System.Windows.Forms.Label();
|
|
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
|
|
this.SuspendLayout();
|
|
//
|
|
// progressBar
|
|
//
|
|
this.progressBar.Location = new System.Drawing.Point(12, 12);
|
|
this.progressBar.Name = "progressBar";
|
|
this.progressBar.Size = new System.Drawing.Size(259, 23);
|
|
this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
|
|
this.progressBar.TabIndex = 0;
|
|
//
|
|
// labelStatus
|
|
//
|
|
this.labelStatus.AutoSize = true;
|
|
this.labelStatus.Location = new System.Drawing.Point(13, 42);
|
|
this.labelStatus.Name = "labelStatus";
|
|
this.labelStatus.Size = new System.Drawing.Size(52, 13);
|
|
this.labelStatus.TabIndex = 1;
|
|
this.labelStatus.Text = "Waiting...";
|
|
//
|
|
// backgroundWorker1
|
|
//
|
|
this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
|
|
this.backgroundWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
|
|
this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
|
|
//
|
|
// WindowCreateCDB
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(284, 63);
|
|
this.Controls.Add(this.labelStatus);
|
|
this.Controls.Add(this.progressBar);
|
|
this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "WindowCreateCDB";
|
|
this.Text = "Creating Compilation Data Base";
|
|
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.WindowCreateCDB_FormClosed);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ProgressBar progressBar;
|
|
private System.Windows.Forms.Label labelStatus;
|
|
private System.ComponentModel.BackgroundWorker backgroundWorker1;
|
|
}
|
|
} |