1 | namespace HeuristicLab.Visualization.Options {
|
---|
2 | partial class OptionsDialog {
|
---|
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 Windows Form 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 | HeuristicLab.Visualization.ChartDataRowsModel chartDataRowsModel1 = new HeuristicLab.Visualization.ChartDataRowsModel();
|
---|
27 | HeuristicLab.Visualization.Options.ViewSettings viewSettings1 = new HeuristicLab.Visualization.Options.ViewSettings();
|
---|
28 | HeuristicLab.Visualization.LabelProvider.ContinuousLabelProvider continuousLabelProvider1 = new HeuristicLab.Visualization.LabelProvider.ContinuousLabelProvider();
|
---|
29 | this.OptionsDialogCancelButton = new System.Windows.Forms.Button();
|
---|
30 | this.OptionsDialogOkButton = new System.Windows.Forms.Button();
|
---|
31 | this.fdFont = new System.Windows.Forms.FontDialog();
|
---|
32 | this.options = new HeuristicLab.Visualization.Options.Options();
|
---|
33 | this.SuspendLayout();
|
---|
34 | //
|
---|
35 | // OptionsDialogCancelButton
|
---|
36 | //
|
---|
37 | this.OptionsDialogCancelButton.Location = new System.Drawing.Point(225, 241);
|
---|
38 | this.OptionsDialogCancelButton.Name = "OptionsDialogCancelButton";
|
---|
39 | this.OptionsDialogCancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
40 | this.OptionsDialogCancelButton.TabIndex = 1;
|
---|
41 | this.OptionsDialogCancelButton.Text = "Reset";
|
---|
42 | this.OptionsDialogCancelButton.UseVisualStyleBackColor = true;
|
---|
43 | this.OptionsDialogCancelButton.Click += new System.EventHandler(this.OptionsDialogResetButton_Click);
|
---|
44 | //
|
---|
45 | // OptionsDialogOkButton
|
---|
46 | //
|
---|
47 | this.OptionsDialogOkButton.Location = new System.Drawing.Point(132, 241);
|
---|
48 | this.OptionsDialogOkButton.Name = "OptionsDialogOkButton";
|
---|
49 | this.OptionsDialogOkButton.Size = new System.Drawing.Size(75, 23);
|
---|
50 | this.OptionsDialogOkButton.TabIndex = 2;
|
---|
51 | this.OptionsDialogOkButton.Text = "OK";
|
---|
52 | this.OptionsDialogOkButton.UseVisualStyleBackColor = true;
|
---|
53 | this.OptionsDialogOkButton.Click += new System.EventHandler(this.OptionsDialogOkButton_Click);
|
---|
54 | //
|
---|
55 | // fdFont
|
---|
56 | //
|
---|
57 | this.fdFont.ShowColor = true;
|
---|
58 | //
|
---|
59 | // options
|
---|
60 | //
|
---|
61 | this.options.Location = new System.Drawing.Point(2, 3);
|
---|
62 | chartDataRowsModel1.XAxis.ShowLabel = true;
|
---|
63 | chartDataRowsModel1.Title = "Title";
|
---|
64 | viewSettings1.LegendColor = System.Drawing.Color.Blue;
|
---|
65 | viewSettings1.LegendFont = new System.Drawing.Font("Arial", 8F);
|
---|
66 | viewSettings1.LegendPosition = HeuristicLab.Visualization.Legend.LegendPosition.Bottom;
|
---|
67 | viewSettings1.TitleColor = System.Drawing.Color.Blue;
|
---|
68 | viewSettings1.TitleFont = new System.Drawing.Font("Arial", 8F);
|
---|
69 | chartDataRowsModel1.ViewSettings = viewSettings1;
|
---|
70 | chartDataRowsModel1.XAxis.Label = "";
|
---|
71 | chartDataRowsModel1.XAxis.LabelProvider = continuousLabelProvider1;
|
---|
72 | this.options.Model = chartDataRowsModel1;
|
---|
73 | this.options.Name = "options";
|
---|
74 | this.options.Size = new System.Drawing.Size(298, 232);
|
---|
75 | this.options.TabIndex = 3;
|
---|
76 | //
|
---|
77 | // OptionsDialog
|
---|
78 | //
|
---|
79 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
80 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
81 | this.ClientSize = new System.Drawing.Size(302, 270);
|
---|
82 | this.Controls.Add(this.options);
|
---|
83 | this.Controls.Add(this.OptionsDialogOkButton);
|
---|
84 | this.Controls.Add(this.OptionsDialogCancelButton);
|
---|
85 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
---|
86 | this.MaximizeBox = false;
|
---|
87 | this.Name = "OptionsDialog";
|
---|
88 | this.Text = "OptionsDialog";
|
---|
89 | this.ResumeLayout(false);
|
---|
90 |
|
---|
91 | }
|
---|
92 |
|
---|
93 | #endregion
|
---|
94 |
|
---|
95 | private System.Windows.Forms.Button OptionsDialogCancelButton;
|
---|
96 | private System.Windows.Forms.Button OptionsDialogOkButton;
|
---|
97 | private System.Windows.Forms.FontDialog fdFont;
|
---|
98 | private Options options;
|
---|
99 | }
|
---|
100 | }
|
---|