Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClassificationEnsembleVoting/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/DiscriminantFunctionClassificationSolutionThresholdView.Designer.cs @ 8508

Last change on this file since 8508 was 8508, checked in by sforsten, 12 years ago

#1776: merged r7864:8507 trunk into branch

File size: 5.0 KB
Line 
1namespace HeuristicLab.Problems.DataAnalysis.Views {
2  partial class DiscriminantFunctionClassificationSolutionThresholdView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
27      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
28      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
29      this.JitterTrackBar = new System.Windows.Forms.TrackBar();
30      this.label1 = new System.Windows.Forms.Label();
31      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
32      ((System.ComponentModel.ISupportInitialize)(this.JitterTrackBar)).BeginInit();
33      this.SuspendLayout();
34      //
35      // chart
36      //
37      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
38                  | System.Windows.Forms.AnchorStyles.Left)
39                  | System.Windows.Forms.AnchorStyles.Right)));
40      chartArea1.Name = "ChartArea1";
41      this.chart.ChartAreas.Add(chartArea1);
42      legend1.Alignment = System.Drawing.StringAlignment.Center;
43      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
44      legend1.Name = "Legend1";
45      this.chart.Legends.Add(legend1);
46      this.chart.Location = new System.Drawing.Point(3, 3);
47      this.chart.Name = "chart";
48      this.chart.Size = new System.Drawing.Size(553, 364);
49      this.chart.TabIndex = 0;
50      this.chart.Text = "chart";
51      this.chart.CustomizeLegend += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CustomizeLegendEventArgs>(this.chart_CustomizeLegend);
52      this.chart.AnnotationPositionChanging += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.AnnotationPositionChangingEventArgs>(this.chart_AnnotationPositionChanging);
53      this.chart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chart_MouseDown);
54      this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
55      //
56      // JitterTrackBar
57      //
58      this.JitterTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
59      this.JitterTrackBar.BackColor = System.Drawing.SystemColors.Window;
60      this.JitterTrackBar.Location = new System.Drawing.Point(483, 341);
61      this.JitterTrackBar.Maximum = 100;
62      this.JitterTrackBar.Name = "JitterTrackBar";
63      this.JitterTrackBar.Size = new System.Drawing.Size(71, 45);
64      this.JitterTrackBar.TabIndex = 1;
65      this.JitterTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
66      this.JitterTrackBar.ValueChanged += new System.EventHandler(this.JitterTrackBar_ValueChanged);
67      //
68      // label1
69      //
70      this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
71      this.label1.AutoSize = true;
72      this.label1.BackColor = System.Drawing.SystemColors.Window;
73      this.label1.Location = new System.Drawing.Point(448, 345);
74      this.label1.Name = "label1";
75      this.label1.Size = new System.Drawing.Size(32, 13);
76      this.label1.TabIndex = 2;
77      this.label1.Text = "Jitter:";
78      //
79      // SymbolicClassificationSolutionView
80      //
81      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
82      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
83      this.Controls.Add(this.label1);
84      this.Controls.Add(this.JitterTrackBar);
85      this.Controls.Add(this.chart);
86      this.Name = "SymbolicClassificationSolutionView";
87      this.Size = new System.Drawing.Size(559, 370);
88      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
89      ((System.ComponentModel.ISupportInitialize)(this.JitterTrackBar)).EndInit();
90      this.ResumeLayout(false);
91      this.PerformLayout();
92
93    }
94
95    #endregion
96
97    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
98    private System.Windows.Forms.TrackBar JitterTrackBar;
99    private System.Windows.Forms.Label label1;
100  }
101}
Note: See TracBrowser for help on using the repository browser.