- Timestamp:
- 03/03/10 18:08:26 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.DeploymentService.AdminClient/MainForm.cs
r2860 r2922 7 7 namespace HeuristicLab.DeploymentService.AdminClient { 8 8 class MainForm : DockingMainForm { 9 private System.Windows.Forms. ProgressBar progressBar;9 private System.Windows.Forms.ToolStripProgressBar progressBar; 10 10 11 11 public MainForm(Type type) … … 20 20 21 21 private void InitializeComponent() { 22 this.progressBar = new System.Windows.Forms.ProgressBar();23 22 this.SuspendLayout(); 24 // 25 // progressBar 26 // 27 this.progressBar.Location = new System.Drawing.Point(0, 528); 28 this.progressBar.Name = "progressBar"; 29 this.progressBar.Size = new System.Drawing.Size(129, 23); 30 this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee; 31 this.progressBar.TabIndex = 7; 32 this.progressBar.Visible = false; 23 24 progressBar = new System.Windows.Forms.ToolStripProgressBar(); 25 progressBar.MarqueeAnimationSpeed = 30; 26 progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee; 27 progressBar.Visible = false; 28 statusStrip.Items.Add(progressBar); 33 29 // 34 30 // MainForm … … 36 32 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 37 33 this.ClientSize = new System.Drawing.Size(770, 550); 38 this.Controls.Add(this.progressBar);39 34 this.Name = "MainForm"; 40 this.Controls.SetChildIndex(this.progressBar, 0);41 35 this.ResumeLayout(false); 42 36 this.PerformLayout(); 43 44 37 } 45 38
Note: See TracChangeset
for help on using the changeset viewer.