[1058] | 1 | using System.Windows.Forms;
|
---|
| 2 |
|
---|
| 3 | namespace HeuristicLab.Visualization
|
---|
[683] | 4 | {
|
---|
| 5 | partial class LineChart
|
---|
| 6 | {
|
---|
| 7 | /// <summary>
|
---|
| 8 | /// Required designer variable.
|
---|
| 9 | /// </summary>
|
---|
| 10 | private System.ComponentModel.IContainer components = null;
|
---|
| 11 |
|
---|
| 12 | /// <summary>
|
---|
| 13 | /// Clean up any resources being used.
|
---|
| 14 | /// </summary>
|
---|
| 15 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 16 | protected override void Dispose(bool disposing)
|
---|
| 17 | {
|
---|
| 18 | if (disposing && (components != null))
|
---|
| 19 | {
|
---|
| 20 | components.Dispose();
|
---|
| 21 | }
|
---|
| 22 | base.Dispose(disposing);
|
---|
| 23 | }
|
---|
| 24 |
|
---|
| 25 | #region Component Designer generated code
|
---|
| 26 |
|
---|
| 27 | /// <summary>
|
---|
| 28 | /// Required method for Designer support - do not modify
|
---|
| 29 | /// the contents of this method with the code editor.
|
---|
| 30 | /// </summary>
|
---|
| 31 | private void InitializeComponent()
|
---|
| 32 | {
|
---|
[1038] | 33 | this.canvas = new HeuristicLab.Visualization.CanvasUI();
|
---|
[754] | 34 | this.SuspendLayout();
|
---|
| 35 | //
|
---|
[1038] | 36 | // canvas
|
---|
[754] | 37 | //
|
---|
[1038] | 38 | this.canvas.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 39 | this.canvas.Location = new System.Drawing.Point(0, 0);
|
---|
| 40 | this.canvas.MouseEventListener = null;
|
---|
| 41 | this.canvas.Name = "canvas";
|
---|
| 42 | this.canvas.Size = new System.Drawing.Size(552, 390);
|
---|
| 43 | this.canvas.TabIndex = 0;
|
---|
| 44 | this.canvas.Text = "canvas";
|
---|
| 45 | this.canvas.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseDown);
|
---|
[1058] | 46 | this.canvas.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseWheel);
|
---|
[1059] | 47 | this.canvas.KeyDown += new System.Windows.Forms.KeyEventHandler(this.canvasUI1_KeyDown);
|
---|
[754] | 48 | //
|
---|
| 49 | // LineChart
|
---|
| 50 | //
|
---|
| 51 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 52 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[1038] | 53 | this.Controls.Add(this.canvas);
|
---|
[754] | 54 | this.Name = "LineChart";
|
---|
| 55 | this.Size = new System.Drawing.Size(552, 390);
|
---|
| 56 | this.ResumeLayout(false);
|
---|
[684] | 57 |
|
---|
[683] | 58 | }
|
---|
| 59 |
|
---|
| 60 | #endregion
|
---|
[754] | 61 |
|
---|
[1038] | 62 | private CanvasUI canvas;
|
---|
[683] | 63 | }
|
---|
| 64 | }
|
---|