Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/27/10 21:30:24 (14 years ago)
Author:
gkronber
Message:

Implemented review comments in plugin manager. #989 (Implement review comments in plugin infrastructure)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/InstallationManagerControl.cs

    r3090 r3547  
    3030namespace HeuristicLab.PluginInfrastructure.Advanced {
    3131  internal partial class InstallationManagerControl : UserControl {
    32     public InstallationManagerControl() {
    33       InitializeComponent();
     32    private IStatusView statusView;
     33    public IStatusView StatusView {
     34      get { return statusView; }
     35      set { statusView = value; }
    3436    }
    3537
    36     internal virtual void ShowInForm() {
    37       Form form = new Form();
    38       form.ClientSize = this.Size;
    39       form.Text = this.Name;
    40       this.Dock = DockStyle.Fill;
    41       form.Controls.Add(this);
    42       form.Show();
     38    public InstallationManagerControl()
     39      : base() {
     40      InitializeComponent();
    4341    }
    4442  }
Note: See TracChangeset for help on using the changeset viewer.