Last change
on this file since 10668 was
10628,
checked in by aesterer, 11 years ago
|
Refactored LineChartLogic and added CheckedItemListView to LineChartView
|
File size:
1.2 KB
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.ComponentModel;
|
---|
4 | using System.Drawing;
|
---|
5 | using System.Data;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 | using System.Windows.Forms;
|
---|
9 | using HeuristicLab.Core.Views;
|
---|
10 | using HeuristicLab.Data;
|
---|
11 | using HeuristicLab.MainForm;
|
---|
12 | using HeuristicLab.Core;
|
---|
13 |
|
---|
14 | namespace HeuristicLab.DataPreprocessing.Views {
|
---|
15 |
|
---|
16 | [View("PreprocessingCheckedItemList View")]
|
---|
17 | [Content(typeof(CheckedItemList<StringValue>), true)]
|
---|
18 | [Content(typeof(ICheckedItemList<StringValue>), true)]
|
---|
19 | public partial class PreprocessingCheckedItemListView : CheckedItemListView<StringValue> {
|
---|
20 |
|
---|
21 | public new ICheckedItemList<StringValue> Content {
|
---|
22 | get { return (ICheckedItemList<StringValue>)base.Content; }
|
---|
23 | set { base.Content = value; }
|
---|
24 | }
|
---|
25 |
|
---|
26 | public PreprocessingCheckedItemListView()
|
---|
27 | : base() {
|
---|
28 | InitializeComponent();
|
---|
29 | DisableDetails();
|
---|
30 | }
|
---|
31 |
|
---|
32 | private void DisableDetails() {
|
---|
33 | splitContainer.Panel2Collapsed = true;
|
---|
34 | viewHost.Content = null;
|
---|
35 | showDetailsCheckBox.Visible = false;
|
---|
36 |
|
---|
37 | }
|
---|
38 |
|
---|
39 | protected override void OnContentChanged() {
|
---|
40 | base.OnContentChanged();
|
---|
41 | }
|
---|
42 | }
|
---|
43 |
|
---|
44 |
|
---|
45 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.