Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/LineChart.Designer.cs @ 1121

Last change on this file since 1121 was 1059, checked in by bspisic, 15 years ago

#424
Implemented history stack for clipping areas - by pressing the "back" button the antecedent clipping area will be set

File size: 2.2 KB
Line 
1using System.Windows.Forms;
2
3namespace HeuristicLab.Visualization
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        {
33          this.canvas = new HeuristicLab.Visualization.CanvasUI();
34          this.SuspendLayout();
35          //
36          // canvas
37          //
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);
46          this.canvas.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseWheel);
47          this.canvas.KeyDown += new System.Windows.Forms.KeyEventHandler(this.canvasUI1_KeyDown);
48          //
49          // LineChart
50          //
51          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
52          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
53          this.Controls.Add(this.canvas);
54          this.Name = "LineChart";
55          this.Size = new System.Drawing.Size(552, 390);
56          this.ResumeLayout(false);
57
58        }
59
60        #endregion
61
62        private CanvasUI canvas;
63    }
64}
Note: See TracBrowser for help on using the repository browser.