Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Charting/3.3/BubbleChartView.Designer.cs @ 2291

Last change on this file since 2291 was 2135, checked in by gkronber, 15 years ago

Improved layout and rendering of bubble chart. #686 (More compact layout of controls in the CEDMA bubble chart control)

File size: 9.5 KB
Line 
1namespace HeuristicLab.CEDMA.Charting {
2  partial class BubbleChartView {
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      this.yJitterLabel = new System.Windows.Forms.Label();
27      this.xJitterlabel = new System.Windows.Forms.Label();
28      this.xTrackBar = new System.Windows.Forms.TrackBar();
29      this.xAxisLabel = new System.Windows.Forms.Label();
30      this.xAxisComboBox = new System.Windows.Forms.ComboBox();
31      this.yAxisLabel = new System.Windows.Forms.Label();
32      this.yAxisComboBox = new System.Windows.Forms.ComboBox();
33      this.yTrackBar = new System.Windows.Forms.TrackBar();
34      this.sizeComboBox = new System.Windows.Forms.ComboBox();
35      this.sizeLabel = new System.Windows.Forms.Label();
36      this.bubbleChartControl = new HeuristicLab.CEDMA.Charting.BubbleChartControl();
37      ((System.ComponentModel.ISupportInitialize)(this.xTrackBar)).BeginInit();
38      ((System.ComponentModel.ISupportInitialize)(this.yTrackBar)).BeginInit();
39      this.SuspendLayout();
40      //
41      // yJitterLabel
42      //
43      this.yJitterLabel.AutoSize = true;
44      this.yJitterLabel.BackColor = System.Drawing.SystemColors.Control;
45      this.yJitterLabel.Location = new System.Drawing.Point(151, 6);
46      this.yJitterLabel.Name = "yJitterLabel";
47      this.yJitterLabel.Size = new System.Drawing.Size(29, 13);
48      this.yJitterLabel.TabIndex = 13;
49      this.yJitterLabel.Text = "jitter:";
50      //
51      // xJitterlabel
52      //
53      this.xJitterlabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
54      this.xJitterlabel.AutoSize = true;
55      this.xJitterlabel.BackColor = System.Drawing.SystemColors.Control;
56      this.xJitterlabel.Location = new System.Drawing.Point(346, 439);
57      this.xJitterlabel.Name = "xJitterlabel";
58      this.xJitterlabel.Size = new System.Drawing.Size(29, 13);
59      this.xJitterlabel.TabIndex = 12;
60      this.xJitterlabel.Text = "jitter:";
61      //
62      // xTrackBar
63      //
64      this.xTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
65      this.xTrackBar.BackColor = System.Drawing.SystemColors.Control;
66      this.xTrackBar.Location = new System.Drawing.Point(381, 435);
67      this.xTrackBar.Maximum = 100;
68      this.xTrackBar.Name = "xTrackBar";
69      this.xTrackBar.Size = new System.Drawing.Size(64, 45);
70      this.xTrackBar.TabIndex = 11;
71      this.xTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
72      this.xTrackBar.ValueChanged += new System.EventHandler(this.jitterTrackBar_ValueChanged);
73      //
74      // xAxisLabel
75      //
76      this.xAxisLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
77      this.xAxisLabel.AutoSize = true;
78      this.xAxisLabel.BackColor = System.Drawing.SystemColors.Control;
79      this.xAxisLabel.Location = new System.Drawing.Point(198, 438);
80      this.xAxisLabel.Name = "xAxisLabel";
81      this.xAxisLabel.Size = new System.Drawing.Size(15, 13);
82      this.xAxisLabel.TabIndex = 8;
83      this.xAxisLabel.Text = "x:";
84      //
85      // xAxisComboBox
86      //
87      this.xAxisComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
88      this.xAxisComboBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
89      this.xAxisComboBox.FormattingEnabled = true;
90      this.xAxisComboBox.Location = new System.Drawing.Point(219, 435);
91      this.xAxisComboBox.Name = "xAxisComboBox";
92      this.xAxisComboBox.Size = new System.Drawing.Size(121, 21);
93      this.xAxisComboBox.TabIndex = 7;
94      this.xAxisComboBox.SelectedIndexChanged += new System.EventHandler(this.axisComboBox_SelectedIndexChanged);
95      //
96      // yAxisLabel
97      //
98      this.yAxisLabel.AutoSize = true;
99      this.yAxisLabel.BackColor = System.Drawing.SystemColors.Control;
100      this.yAxisLabel.Location = new System.Drawing.Point(3, 6);
101      this.yAxisLabel.Name = "yAxisLabel";
102      this.yAxisLabel.Size = new System.Drawing.Size(15, 13);
103      this.yAxisLabel.TabIndex = 6;
104      this.yAxisLabel.Text = "y:";
105      //
106      // yAxisComboBox
107      //
108      this.yAxisComboBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
109      this.yAxisComboBox.FormattingEnabled = true;
110      this.yAxisComboBox.Location = new System.Drawing.Point(24, 3);
111      this.yAxisComboBox.Name = "yAxisComboBox";
112      this.yAxisComboBox.Size = new System.Drawing.Size(121, 21);
113      this.yAxisComboBox.TabIndex = 5;
114      this.yAxisComboBox.SelectedIndexChanged += new System.EventHandler(this.axisComboBox_SelectedIndexChanged);
115      //
116      // yTrackBar
117      //
118      this.yTrackBar.BackColor = System.Drawing.SystemColors.Control;
119      this.yTrackBar.Location = new System.Drawing.Point(186, 3);
120      this.yTrackBar.Maximum = 100;
121      this.yTrackBar.Name = "yTrackBar";
122      this.yTrackBar.Size = new System.Drawing.Size(59, 45);
123      this.yTrackBar.TabIndex = 10;
124      this.yTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
125      this.yTrackBar.ValueChanged += new System.EventHandler(this.jitterTrackBar_ValueChanged);
126      //
127      // sizeComboBox
128      //
129      this.sizeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
130      this.sizeComboBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
131      this.sizeComboBox.FormattingEnabled = true;
132      this.sizeComboBox.Location = new System.Drawing.Point(324, 3);
133      this.sizeComboBox.Name = "sizeComboBox";
134      this.sizeComboBox.Size = new System.Drawing.Size(121, 21);
135      this.sizeComboBox.TabIndex = 14;
136      this.sizeComboBox.SelectedIndexChanged += new System.EventHandler(this.sizeComboBox_SelectedIndexChanged);
137      //
138      // sizeLabel
139      //
140      this.sizeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
141      this.sizeLabel.AutoSize = true;
142      this.sizeLabel.BackColor = System.Drawing.SystemColors.Control;
143      this.sizeLabel.Location = new System.Drawing.Point(254, 6);
144      this.sizeLabel.Name = "sizeLabel";
145      this.sizeLabel.Size = new System.Drawing.Size(64, 13);
146      this.sizeLabel.TabIndex = 15;
147      this.sizeLabel.Text = "Bubble size:";
148      //
149      // bubbleChartControl
150      //
151      this.bubbleChartControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
152                  | System.Windows.Forms.AnchorStyles.Left)
153                  | System.Windows.Forms.AnchorStyles.Right)));
154      this.bubbleChartControl.BackColor = System.Drawing.SystemColors.Control;
155      this.bubbleChartControl.Chart = null;
156      this.bubbleChartControl.Location = new System.Drawing.Point(0, 30);
157      this.bubbleChartControl.Name = "bubbleChartControl";
158      this.bubbleChartControl.ScaleOnResize = true;
159      this.bubbleChartControl.Size = new System.Drawing.Size(450, 399);
160      this.bubbleChartControl.TabIndex = 17;
161      //
162      // BubbleChartView
163      //
164      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
165      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
166      this.Controls.Add(this.sizeLabel);
167      this.Controls.Add(this.sizeComboBox);
168      this.Controls.Add(this.yJitterLabel);
169      this.Controls.Add(this.xJitterlabel);
170      this.Controls.Add(this.xTrackBar);
171      this.Controls.Add(this.xAxisLabel);
172      this.Controls.Add(this.xAxisComboBox);
173      this.Controls.Add(this.yAxisLabel);
174      this.Controls.Add(this.yAxisComboBox);
175      this.Controls.Add(this.bubbleChartControl);
176      this.Controls.Add(this.yTrackBar);
177      this.Name = "BubbleChartView";
178      this.Size = new System.Drawing.Size(450, 459);
179      ((System.ComponentModel.ISupportInitialize)(this.xTrackBar)).EndInit();
180      ((System.ComponentModel.ISupportInitialize)(this.yTrackBar)).EndInit();
181      this.ResumeLayout(false);
182      this.PerformLayout();
183
184    }
185
186    #endregion
187
188    private System.Windows.Forms.Label xAxisLabel;
189    private System.Windows.Forms.ComboBox xAxisComboBox;
190    private System.Windows.Forms.Label yAxisLabel;
191    private System.Windows.Forms.ComboBox yAxisComboBox;
192    private System.Windows.Forms.TrackBar yTrackBar;
193    private System.Windows.Forms.TrackBar xTrackBar;
194    private System.Windows.Forms.Label xJitterlabel;
195    private System.Windows.Forms.Label yJitterLabel;
196    private System.Windows.Forms.ComboBox sizeComboBox;
197    private System.Windows.Forms.Label sizeLabel;
198    private BubbleChartControl bubbleChartControl;
199  }
200}
Note: See TracBrowser for help on using the repository browser.