Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/29/15 09:27:31 (9 years ago)
Author:
jkarder
Message:

#1265: implemented new chart mode concept

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Visualization/HeuristicLab.Visualization/3.3/ChartControl.Designer.cs

    r13045 r13076  
    5555      this.propertiesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    5656      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
    57       this.selectButton = new System.Windows.Forms.RadioButton();
    58       this.moveButton = new System.Windows.Forms.RadioButton();
    59       this.zoomInButton = new System.Windows.Forms.RadioButton();
    60       this.zoomOutButton = new System.Windows.Forms.RadioButton();
    6157      this.buttonPanel = new System.Windows.Forms.FlowLayoutPanel();
    6258      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     
    173169      this.saveFileDialog.Filter = "Bitmap (*.bmp)|*.bmp|JPEG (*.jpg)|*.jpg|EMF (*.emf)|*.emf|PNG (*.png)|*.png|GIF (" +
    174170    "*.gif)|*.gif|TIFF (*.tif)|*.tif";
    175       //
    176       // selectButton
    177       //
    178       this.selectButton.Appearance = System.Windows.Forms.Appearance.Button;
    179       this.selectButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Pointer;
    180       this.selectButton.Location = new System.Drawing.Point(3, 3);
    181       this.selectButton.Name = "selectButton";
    182       this.selectButton.Size = new System.Drawing.Size(26, 24);
    183       this.selectButton.TabIndex = 1;
    184       this.selectButton.TabStop = true;
    185       this.selectButton.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
    186       this.toolTip.SetToolTip(this.selectButton, "Select");
    187       this.selectButton.UseVisualStyleBackColor = true;
    188       this.selectButton.CheckedChanged += new System.EventHandler(this.SelectButtonOnCheckedChanged);
    189       //
    190       // moveButton
    191       //
    192       this.moveButton.Appearance = System.Windows.Forms.Appearance.Button;
    193       this.moveButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Breakpoint;
    194       this.moveButton.Location = new System.Drawing.Point(3, 33);
    195       this.moveButton.Name = "moveButton";
    196       this.moveButton.Size = new System.Drawing.Size(26, 24);
    197       this.moveButton.TabIndex = 1;
    198       this.moveButton.TabStop = true;
    199       this.moveButton.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
    200       this.toolTip.SetToolTip(this.moveButton, "Move");
    201       this.moveButton.UseVisualStyleBackColor = true;
    202       this.moveButton.CheckedChanged += new System.EventHandler(this.MoveButtonOnCheckedChanged);
    203       //
    204       // zoomInButton
    205       //
    206       this.zoomInButton.Appearance = System.Windows.Forms.Appearance.Button;
    207       this.zoomInButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.ZoomIn;
    208       this.zoomInButton.Location = new System.Drawing.Point(3, 63);
    209       this.zoomInButton.Name = "zoomInButton";
    210       this.zoomInButton.Size = new System.Drawing.Size(26, 24);
    211       this.zoomInButton.TabIndex = 1;
    212       this.zoomInButton.TabStop = true;
    213       this.zoomInButton.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
    214       this.toolTip.SetToolTip(this.zoomInButton, "Zoom In");
    215       this.zoomInButton.UseVisualStyleBackColor = true;
    216       this.zoomInButton.CheckedChanged += new System.EventHandler(this.ZoomInButtonOnCheckedChanged);
    217       //
    218       // zoomOutButton
    219       //
    220       this.zoomOutButton.Appearance = System.Windows.Forms.Appearance.Button;
    221       this.zoomOutButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.ZoomOut;
    222       this.zoomOutButton.Location = new System.Drawing.Point(3, 93);
    223       this.zoomOutButton.Name = "zoomOutButton";
    224       this.zoomOutButton.Size = new System.Drawing.Size(26, 24);
    225       this.zoomOutButton.TabIndex = 1;
    226       this.zoomOutButton.TabStop = true;
    227       this.zoomOutButton.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
    228       this.toolTip.SetToolTip(this.zoomOutButton, "Zoom Out");
    229       this.zoomOutButton.UseVisualStyleBackColor = true;
    230       this.zoomOutButton.CheckedChanged += new System.EventHandler(this.ZoomOutButtonOnCheckedChanged);
    231       //
    232       // buttonPanel
    233       //
    234171      this.buttonPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    235172            | System.Windows.Forms.AnchorStyles.Left)));
    236       this.buttonPanel.Controls.Add(this.selectButton);
    237       this.buttonPanel.Controls.Add(this.moveButton);
    238       this.buttonPanel.Controls.Add(this.zoomInButton);
    239       this.buttonPanel.Controls.Add(this.zoomOutButton);
    240173      this.buttonPanel.Location = new System.Drawing.Point(0, 0);
    241174      this.buttonPanel.Name = "buttonPanel";
     
    275208    protected System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
    276209    protected System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
    277     protected System.Windows.Forms.RadioButton selectButton;
    278     protected System.Windows.Forms.RadioButton moveButton;
    279     protected System.Windows.Forms.RadioButton zoomInButton;
    280     protected System.Windows.Forms.RadioButton zoomOutButton;
    281210    protected System.Windows.Forms.FlowLayoutPanel buttonPanel;
    282211    protected System.Windows.Forms.SaveFileDialog saveFileDialog;
Note: See TracChangeset for help on using the changeset viewer.