Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/29/09 21:36:46 (15 years ago)
Author:
dwagner
Message:

Added OptionsDialog, min and max lines and fixed bug in auto-adjust. (#478) (#345)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/LineChart.Designer.cs

    r1059 r1187  
    3131        private void InitializeComponent()
    3232        {
     33          this.components = new System.ComponentModel.Container();
    3334          this.canvas = new HeuristicLab.Visualization.CanvasUI();
     35          this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     36          this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     37          this.contextMenuStrip1.SuspendLayout();
    3438          this.SuspendLayout();
    3539          //
     
    4347          this.canvas.TabIndex = 0;
    4448          this.canvas.Text = "canvas";
     49          this.canvas.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseWheel);
     50          this.canvas.ContextMenuStripChanged += new System.EventHandler(this.optionsToolStripMenuItem_Click);
    4551          this.canvas.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseDown);
    46           this.canvas.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseWheel);
    4752          this.canvas.KeyDown += new System.Windows.Forms.KeyEventHandler(this.canvasUI1_KeyDown);
     53          //
     54          // contextMenuStrip1
     55          //
     56          this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     57            this.optionsToolStripMenuItem});
     58          this.contextMenuStrip1.Name = "contextMenuStrip1";
     59          this.contextMenuStrip1.Size = new System.Drawing.Size(112, 26);
     60
     61          //
     62          // optionsToolStripMenuItem
     63          //
     64          this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
     65          this.optionsToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     66          this.optionsToolStripMenuItem.Text = "Options";
     67          this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
    4868          //
    4969          // LineChart
     
    5474          this.Name = "LineChart";
    5575          this.Size = new System.Drawing.Size(552, 390);
     76          this.contextMenuStrip1.ResumeLayout(false);
    5677          this.ResumeLayout(false);
    5778
     
    6182
    6283        private CanvasUI canvas;
     84        private ContextMenuStrip contextMenuStrip1;
     85        private ToolStripMenuItem optionsToolStripMenuItem;
    6386    }
    6487}
Note: See TracChangeset for help on using the changeset viewer.