Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/22/10 16:53:27 (14 years ago)
Author:
gkronber
Message:

Improved controls for deployment service interaction.
Increased max values for message sizes and related limits in the deployment service configuration.
Recreated proxy classes for the deployment service.

#891 (Refactor GUI for plugin management)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginAdministrator/3.3/MainForm.cs

    r3081 r3179  
    2929  internal class MainForm : DockingMainForm {
    3030    private System.Windows.Forms.ToolStripProgressBar progressBar;
    31 
     31    private System.Windows.Forms.ToolStripLabel statusLabel;
    3232    public MainForm(Type type)
    3333      : base(type) {
     
    4141
    4242    private void InitializeComponent() {
     43      this.progressBar = new System.Windows.Forms.ToolStripProgressBar();
     44      this.statusLabel = new System.Windows.Forms.ToolStripLabel();
    4345      this.SuspendLayout();
     46      //
     47      // progressBar
     48      //
     49      this.progressBar.MarqueeAnimationSpeed = 30;
     50      this.progressBar.Name = "progressBar";
     51      this.progressBar.Size = new System.Drawing.Size(100, 16);
     52      this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
     53      this.progressBar.Visible = false;
    4454
    45       progressBar = new System.Windows.Forms.ToolStripProgressBar();
    46       progressBar.MarqueeAnimationSpeed = 30;
    47       progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
    48       progressBar.Visible = false;
    49       statusStrip.Items.Add(progressBar);
     55      this.statusLabel.Name = "statusLabel";
     56      this.statusLabel.Visible = true;
    5057      //
    5158      // MainForm
     
    5663      this.ResumeLayout(false);
    5764      this.PerformLayout();
     65
    5866    }
    5967
     
    6573      progressBar.Visible = false;
    6674    }
     75
     76    public void SetStatusBarText(string msg) {
     77      statusLabel.Text = msg;
     78    }
    6779  }
    6880}
Note: See TracChangeset for help on using the changeset viewer.