[1058] | 1 | using System.Windows.Forms;
|
---|
[1964] | 2 | using HeuristicLab.Visualization.Drawing;
|
---|
[1058] | 3 |
|
---|
| 4 | namespace HeuristicLab.Visualization
|
---|
[683] | 5 | {
|
---|
| 6 | partial class LineChart
|
---|
| 7 | {
|
---|
| 8 | /// <summary>
|
---|
| 9 | /// Required designer variable.
|
---|
| 10 | /// </summary>
|
---|
| 11 | private System.ComponentModel.IContainer components = null;
|
---|
| 12 |
|
---|
| 13 | /// <summary>
|
---|
| 14 | /// Clean up any resources being used.
|
---|
| 15 | /// </summary>
|
---|
| 16 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 17 | protected override void Dispose(bool disposing)
|
---|
[1968] | 18 | {
|
---|
| 19 | this.toolTipListener.ShowToolTip-= ShowToolTip;
|
---|
[683] | 20 | if (disposing && (components != null))
|
---|
| 21 | {
|
---|
| 22 | components.Dispose();
|
---|
| 23 | }
|
---|
| 24 | base.Dispose(disposing);
|
---|
[1968] | 25 |
|
---|
[683] | 26 | }
|
---|
| 27 |
|
---|
| 28 | #region Component Designer generated code
|
---|
| 29 |
|
---|
| 30 | /// <summary>
|
---|
| 31 | /// Required method for Designer support - do not modify
|
---|
| 32 | /// the contents of this method with the code editor.
|
---|
| 33 | /// </summary>
|
---|
| 34 | private void InitializeComponent()
|
---|
| 35 | {
|
---|
[1187] | 36 | this.components = new System.ComponentModel.Container();
|
---|
[1964] | 37 | this.canvasUI = new CanvasUI();
|
---|
[1781] | 38 | this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
[1187] | 39 | this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
[1781] | 40 | this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
| 41 | this.contextMenu.SuspendLayout();
|
---|
[754] | 42 | this.SuspendLayout();
|
---|
| 43 | //
|
---|
[1240] | 44 | // canvasUI
|
---|
[754] | 45 | //
|
---|
[1240] | 46 | this.canvasUI.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 47 | this.canvasUI.Location = new System.Drawing.Point(0, 0);
|
---|
| 48 | this.canvasUI.Name = "canvasUI";
|
---|
| 49 | this.canvasUI.Size = new System.Drawing.Size(551, 373);
|
---|
| 50 | this.canvasUI.TabIndex = 0;
|
---|
| 51 | this.canvasUI.Text = "canvas";
|
---|
| 52 | this.canvasUI.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseWheel);
|
---|
[1249] | 53 | this.canvasUI.MouseMove += new System.Windows.Forms.MouseEventHandler(this.canvasUI_MouseMove);
|
---|
[1240] | 54 | this.canvasUI.ContextMenuStripChanged += new System.EventHandler(this.optionsToolStripMenuItem_Click);
|
---|
| 55 | this.canvasUI.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseDown);
|
---|
[1249] | 56 | this.canvasUI.MouseUp += new System.Windows.Forms.MouseEventHandler(this.canvasUI_MouseUp);
|
---|
[754] | 57 | //
|
---|
[1781] | 58 | // contextMenu
|
---|
[1187] | 59 | //
|
---|
[1781] | 60 | this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
| 61 | this.optionsToolStripMenuItem,
|
---|
| 62 | this.exportToolStripMenuItem});
|
---|
| 63 | this.contextMenu.Name = "contextMenuStrip1";
|
---|
| 64 | this.contextMenu.Size = new System.Drawing.Size(153, 70);
|
---|
[1187] | 65 | //
|
---|
| 66 | // optionsToolStripMenuItem
|
---|
| 67 | //
|
---|
| 68 | this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
|
---|
[1781] | 69 | this.optionsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
---|
| 70 | this.optionsToolStripMenuItem.Text = "Opti&ons...";
|
---|
[1187] | 71 | this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
|
---|
| 72 | //
|
---|
[1781] | 73 | // exportToolStripMenuItem
|
---|
| 74 | //
|
---|
| 75 | this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
|
---|
| 76 | this.exportToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
---|
| 77 | this.exportToolStripMenuItem.Text = "E&xport...";
|
---|
| 78 | this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
|
---|
| 79 | //
|
---|
[754] | 80 | // LineChart
|
---|
| 81 | //
|
---|
| 82 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 83 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[1240] | 84 | this.Controls.Add(this.canvasUI);
|
---|
[754] | 85 | this.Name = "LineChart";
|
---|
[1240] | 86 | this.Size = new System.Drawing.Size(551, 373);
|
---|
[1781] | 87 | this.contextMenu.ResumeLayout(false);
|
---|
[754] | 88 | this.ResumeLayout(false);
|
---|
[684] | 89 |
|
---|
[683] | 90 | }
|
---|
| 91 |
|
---|
| 92 | #endregion
|
---|
[754] | 93 |
|
---|
[1240] | 94 | private CanvasUI canvasUI;
|
---|
[1781] | 95 | private ContextMenuStrip contextMenu;
|
---|
[1187] | 96 | private ToolStripMenuItem optionsToolStripMenuItem;
|
---|
[1781] | 97 | private ToolStripMenuItem exportToolStripMenuItem;
|
---|
[683] | 98 | }
|
---|
| 99 | }
|
---|