Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/MainForms/MainForm.Designer.cs @ 11467

Last change on this file since 11467 was 11467, checked in by bburlacu, 10 years ago

#2265: Added drag&drop file loading support. To avoid confusion between files and all the other data types that can be dragged and dropped in HeuristicLab, the drop area for loading files is restricted to the toolbar and menubar of the HL window.

File size: 4.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21namespace HeuristicLab.MainForm.WindowsForms {
22  partial class MainForm {
23    /// <summary>
24    /// Required designer variable.
25    /// </summary>
26    private System.ComponentModel.IContainer components = null;
27
28    /// <summary>
29    /// Clean up any resources being used.
30    /// </summary>
31    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
32    protected override void Dispose(bool disposing) {
33      if (disposing && (components != null)) {
34        components.Dispose();
35      }
36      base.Dispose(disposing);
37    }
38
39    #region Windows Form Designer generated code
40
41    /// <summary>
42    /// Required method for Designer support - do not modify
43    /// the contents of this method with the code editor.
44    /// </summary>
45    private void InitializeComponent() {
46      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
47      this.menuStrip = new System.Windows.Forms.MenuStrip();
48      this.toolStrip = new System.Windows.Forms.ToolStrip();
49      this.statusStrip = new System.Windows.Forms.StatusStrip();
50      this.SuspendLayout();
51      //
52      // menuStrip
53      //
54      this.menuStrip.Location = new System.Drawing.Point(0, 0);
55      this.menuStrip.Name = "menuStrip";
56      this.menuStrip.Size = new System.Drawing.Size(624, 24);
57      this.menuStrip.TabIndex = 0;
58      this.menuStrip.Text = "menuStrip";
59      this.menuStrip.AllowDrop = true;
60      this.menuStrip.DragEnter += MainFormBase_DragEnter;
61      this.menuStrip.DragDrop += MainFormBase_DragDrop;
62      //
63      // toolStrip
64      //
65      this.toolStrip.Location = new System.Drawing.Point(0, 24);
66      this.toolStrip.Name = "toolStrip";
67      this.toolStrip.Size = new System.Drawing.Size(624, 25);
68      this.toolStrip.TabIndex = 1;
69      this.toolStrip.AllowDrop = true;
70      this.toolStrip.DragEnter += MainFormBase_DragEnter;
71      this.toolStrip.DragDrop += MainFormBase_DragDrop;
72      //
73      // statusStrip
74      //
75      this.statusStrip.Location = new System.Drawing.Point(0, 390);
76      this.statusStrip.Name = "statusStrip";
77      this.statusStrip.Size = new System.Drawing.Size(624, 22);
78      this.statusStrip.TabIndex = 2;
79      this.statusStrip.Text = "statusStrip";
80      //
81      // MainForm
82      //
83      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
84      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
85      this.ClientSize = new System.Drawing.Size(624, 412);
86      this.Controls.Add(this.statusStrip);
87      this.Controls.Add(this.toolStrip);
88      this.Controls.Add(this.menuStrip);
89      this.Icon = HeuristicLab.Common.Resources.HeuristicLab.Icon;
90      this.MainMenuStrip = this.menuStrip;
91      this.Name = "MainFormBase";
92      this.Load += new System.EventHandler(this.MainFormBase_Load);
93      this.ResumeLayout(false);
94      this.PerformLayout();
95
96    }
97
98    #endregion
99
100    protected System.Windows.Forms.ToolStrip toolStrip;
101    protected System.Windows.Forms.StatusStrip statusStrip;
102    protected System.Windows.Forms.MenuStrip menuStrip;
103  }
104}
Note: See TracBrowser for help on using the repository browser.