Last change
on this file since 8694 was
7803,
checked in by spimming, 13 years ago
|
#1807:
- data analysis service initial commit
- wizard added
|
File size:
516 bytes
|
Rev | Line | |
---|
[7803] | 1 | using System.Windows.Forms;
|
---|
| 2 |
|
---|
| 3 | namespace 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.