1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 | using System;
|
---|
22 | using System.Collections.Generic;
|
---|
23 | using System.Collections.Specialized;
|
---|
24 | using System.ComponentModel;
|
---|
25 | using System.Data;
|
---|
26 | using System.Drawing;
|
---|
27 | using System.Linq;
|
---|
28 | using System.Text;
|
---|
29 | using System.Windows.Forms;
|
---|
30 | using HeuristicLab.Common;
|
---|
31 | using HeuristicLab.MainForm;
|
---|
32 | using HeuristicLab.Problems.DataAnalysis;
|
---|
33 | using HeuristicLab.MainForm.WindowsForms;
|
---|
34 | using System.Windows.Forms.DataVisualization.Charting;
|
---|
35 | using HeuristicLab.Problems.DataAnalysis.SupportVectorMachine;
|
---|
36 | using System.IO;
|
---|
37 |
|
---|
38 | namespace HeuristicLab.Problems.DataAnalysis.Views {
|
---|
39 | [View("Support Vector Machine Model View")]
|
---|
40 | [Content(typeof(SupportVectorMachineModel), true)]
|
---|
41 | public partial class SupportVectorMachineModelView : AsynchronousContentView {
|
---|
42 |
|
---|
43 | public new SupportVectorMachineModel Content {
|
---|
44 | get { return (SupportVectorMachineModel)base.Content; }
|
---|
45 | set {
|
---|
46 | base.Content = value;
|
---|
47 | }
|
---|
48 | }
|
---|
49 |
|
---|
50 | public SupportVectorMachineModelView()
|
---|
51 | : base() {
|
---|
52 | InitializeComponent();
|
---|
53 | }
|
---|
54 |
|
---|
55 |
|
---|
56 | #region events
|
---|
57 | protected override void RegisterContentEvents() {
|
---|
58 | base.RegisterContentEvents();
|
---|
59 | Content.Changed += new EventHandler(Content_Changed);
|
---|
60 | }
|
---|
61 |
|
---|
62 | protected override void DeregisterContentEvents() {
|
---|
63 | base.DeregisterContentEvents();
|
---|
64 | Content.Changed -= new EventHandler(Content_Changed);
|
---|
65 | }
|
---|
66 |
|
---|
67 | private void Content_Changed(object sender, EventArgs e) {
|
---|
68 | using (MemoryStream s = new MemoryStream()) {
|
---|
69 | SupportVectorMachineModel.Export(Content, s);
|
---|
70 | s.Seek(0, System.IO.SeekOrigin.Begin);
|
---|
71 | StreamReader reader = new StreamReader(s);
|
---|
72 | textBox.Text = reader.ReadToEnd();
|
---|
73 | }
|
---|
74 | }
|
---|
75 |
|
---|
76 | #endregion
|
---|
77 | }
|
---|
78 | }
|
---|