Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/03/10 18:08:26 (14 years ago)
Author:
gkronber
Message:

Worked on GUI for plugin management. #891 (Refactor GUI for plugin management)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.DeploymentService.AdminClient/MainForm.cs

    r2860 r2922  
    77namespace HeuristicLab.DeploymentService.AdminClient {
    88  class MainForm : DockingMainForm {
    9     private System.Windows.Forms.ProgressBar progressBar;
     9    private System.Windows.Forms.ToolStripProgressBar progressBar;
    1010
    1111    public MainForm(Type type)
     
    2020
    2121    private void InitializeComponent() {
    22       this.progressBar = new System.Windows.Forms.ProgressBar();
    2322      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);
    3329      //
    3430      // MainForm
     
    3632      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    3733      this.ClientSize = new System.Drawing.Size(770, 550);
    38       this.Controls.Add(this.progressBar);
    3934      this.Name = "MainForm";
    40       this.Controls.SetChildIndex(this.progressBar, 0);
    4135      this.ResumeLayout(false);
    4236      this.PerformLayout();
    43 
    4437    }
    4538
Note: See TracChangeset for help on using the changeset viewer.