Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/ScopeListView.cs @ 3709

Last change on this file since 3709 was 3566, checked in by mkommend, 14 years ago

removed ctors with contents in all views (ticket #972)

File size: 572 bytes
Line 
1using HeuristicLab.Collections;
2using HeuristicLab.MainForm;
3
4namespace HeuristicLab.Core.Views {
5  [View("ScopeList View")]
6  [Content(typeof(ScopeList), true)]
7  [Content(typeof(IItemList<IScope>), false)]
8  public partial class ScopeListView : ItemListView<IScope> {
9    /// <summary>
10    /// Initializes a new instance of <see cref="VariablesScopeView"/> with caption "Variables Scope View".
11    /// </summary>
12    public ScopeListView() {
13      InitializeComponent();
14      Caption = "ScopeList";
15      itemsGroupBox.Text = "Scopes";
16    }
17  }
18}
Note: See TracBrowser for help on using the repository browser.