|
|
@@ -51,6 +51,7 @@
|
|
|
this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
|
|
|
this.backgroundLoadInfo = new System.ComponentModel.BackgroundWorker();
|
|
|
this.backgroundUpdateMods = new System.ComponentModel.BackgroundWorker();
|
|
|
+ this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
|
|
|
this.menuStrip1.SuspendLayout();
|
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
|
this.statusStrip1.SuspendLayout();
|
|
|
@@ -211,7 +212,8 @@
|
|
|
// statusStrip1
|
|
|
//
|
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
- this.toolStripProgressBar1});
|
|
|
+ this.toolStripProgressBar1,
|
|
|
+ this.toolStripStatusLabel1});
|
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 501);
|
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
|
this.statusStrip1.Size = new System.Drawing.Size(800, 22);
|
|
|
@@ -231,6 +233,19 @@
|
|
|
this.backgroundLoadInfo.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.BackgroundLoadInfo_ProgressChanged);
|
|
|
this.backgroundLoadInfo.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.BackgroundLoadInfo_RunWorkerCompleted);
|
|
|
//
|
|
|
+ // backgroundUpdateMods
|
|
|
+ //
|
|
|
+ this.backgroundUpdateMods.WorkerReportsProgress = true;
|
|
|
+ this.backgroundUpdateMods.DoWork += new System.ComponentModel.DoWorkEventHandler(this.BackgroundUpdateMods_DoWork);
|
|
|
+ this.backgroundUpdateMods.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.BackgroundUpdateMods_ProgressChanged);
|
|
|
+ this.backgroundUpdateMods.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.BackgroundUpdateMods_RunWorkerCompleted);
|
|
|
+ //
|
|
|
+ // toolStripStatusLabel1
|
|
|
+ //
|
|
|
+ this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
|
|
|
+ this.toolStripStatusLabel1.Size = new System.Drawing.Size(46, 17);
|
|
|
+ this.toolStripStatusLabel1.Text = "Статус:";
|
|
|
+ //
|
|
|
// Form1
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
@@ -278,6 +293,7 @@
|
|
|
private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1;
|
|
|
private System.ComponentModel.BackgroundWorker backgroundLoadInfo;
|
|
|
private System.ComponentModel.BackgroundWorker backgroundUpdateMods;
|
|
|
+ private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
|
|
|
}
|
|
|
}
|
|
|
|