Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard/3.3/Controls/WizardBanner.cs @ 13410

Last change on this file since 13410 was 7803, checked in by spimming, 12 years ago

#1807:

  • data analysis service initial commit
  • wizard added
File size: 516 bytes
Line 
1using System.Windows.Forms;
2
3namespace HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.Controls {
4  public partial class WizardBanner : UserControl {
5    public string Title {
6      get { return lblTitle.Text; }
7      set { lblTitle.Text = value; }
8    }
9
10    public string Subtitle {
11      get { return lblSubtitle.Text; }
12      set { lblSubtitle.Text = value; }
13    }
14    public WizardBanner() {
15      InitializeComponent();
16      SetStyle(ControlStyles.Selectable, false);
17    }
18  }
19}
Note: See TracBrowser for help on using the repository browser.