Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/3.2/Options/OptionsDialog.Designer.cs @ 1964

Last change on this file since 1964 was 1881, checked in by mstoeger, 15 years ago

renamed xaxis-properties #498

File size: 4.6 KB
RevLine 
[1195]1namespace 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() {
[1586]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();
[1328]29      this.OptionsDialogCancelButton = new System.Windows.Forms.Button();
30      this.OptionsDialogOkButton = new System.Windows.Forms.Button();
31      this.fdFont = new System.Windows.Forms.FontDialog();
[1586]32      this.options = new HeuristicLab.Visualization.Options.Options();
[1195]33      this.SuspendLayout();
34      //
[1328]35      // OptionsDialogCancelButton
[1195]36      //
[1586]37      this.OptionsDialogCancelButton.Location = new System.Drawing.Point(225, 241);
[1328]38      this.OptionsDialogCancelButton.Name = "OptionsDialogCancelButton";
39      this.OptionsDialogCancelButton.Size = new System.Drawing.Size(75, 23);
40      this.OptionsDialogCancelButton.TabIndex = 1;
[1389]41      this.OptionsDialogCancelButton.Text = "Reset";
[1328]42      this.OptionsDialogCancelButton.UseVisualStyleBackColor = true;
[1389]43      this.OptionsDialogCancelButton.Click += new System.EventHandler(this.OptionsDialogResetButton_Click);
[1195]44      //
[1328]45      // OptionsDialogOkButton
46      //
[1586]47      this.OptionsDialogOkButton.Location = new System.Drawing.Point(132, 241);
[1328]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      //
[1586]59      // options
[1328]60      //
[1586]61      this.options.Location = new System.Drawing.Point(2, 3);
[1881]62      chartDataRowsModel1.XAxis.ShowLabel = true;
[1586]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      viewSettings1.XAxisColor = System.Drawing.Color.Blue;
70      viewSettings1.XAxisFont = new System.Drawing.Font("Arial", 8F);
71      chartDataRowsModel1.ViewSettings = viewSettings1;
[1881]72      chartDataRowsModel1.XAxis.Label = "";
73      chartDataRowsModel1.XAxis.LabelProvider = continuousLabelProvider1;
[1586]74      this.options.Model = chartDataRowsModel1;
75      this.options.Name = "options";
76      this.options.Size = new System.Drawing.Size(298, 232);
77      this.options.TabIndex = 3;
[1328]78      //
[1195]79      // OptionsDialog
80      //
81      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
82      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[1586]83      this.ClientSize = new System.Drawing.Size(302, 270);
84      this.Controls.Add(this.options);
[1195]85      this.Controls.Add(this.OptionsDialogOkButton);
86      this.Controls.Add(this.OptionsDialogCancelButton);
87      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
88      this.MaximizeBox = false;
89      this.Name = "OptionsDialog";
90      this.Text = "OptionsDialog";
91      this.ResumeLayout(false);
92
93    }
94
95    #endregion
96
[1328]97    private System.Windows.Forms.Button OptionsDialogCancelButton;
98    private System.Windows.Forms.Button OptionsDialogOkButton;
99    private System.Windows.Forms.FontDialog fdFont;
[1586]100    private Options options;
[1195]101  }
[1342]102}
Note: See TracBrowser for help on using the repository browser.