Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/11/10 03:59:22 (14 years ago)
Author:
swagner
Message:

Enabled dragging and dropping of problems and algorithms in AlgorithmView and BatchRunView (#965).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/AlgorithmView.Designer.cs

    r3281 r3299  
    5050      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
    5151      this.problemTabPage = new System.Windows.Forms.TabPage();
     52      this.problemPanel = new System.Windows.Forms.Panel();
     53      this.problemViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5254      this.saveProblemButton = new System.Windows.Forms.Button();
    5355      this.openProblemButton = new System.Windows.Forms.Button();
    5456      this.newProblemButton = new System.Windows.Forms.Button();
    55       this.problemViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5657      this.resultsTabPage = new System.Windows.Forms.TabPage();
    5758      this.resultsView = new HeuristicLab.Optimization.Views.ResultCollectionView();
     59      this.runsTabPage = new System.Windows.Forms.TabPage();
     60      this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView();
    5861      this.startButton = new System.Windows.Forms.Button();
    5962      this.pauseButton = new System.Windows.Forms.Button();
     
    6467      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
    6568      this.stopButton = new System.Windows.Forms.Button();
    66       this.runsTabPage = new System.Windows.Forms.TabPage();
    67       this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView();
    6869      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    6970      this.tabControl.SuspendLayout();
    7071      this.parametersTabPage.SuspendLayout();
    7172      this.problemTabPage.SuspendLayout();
     73      this.problemPanel.SuspendLayout();
    7274      this.resultsTabPage.SuspendLayout();
    7375      this.runsTabPage.SuspendLayout();
     
    124126      // problemTabPage
    125127      //
     128      this.problemTabPage.Controls.Add(this.problemPanel);
    126129      this.problemTabPage.Controls.Add(this.saveProblemButton);
    127130      this.problemTabPage.Controls.Add(this.openProblemButton);
    128131      this.problemTabPage.Controls.Add(this.newProblemButton);
    129       this.problemTabPage.Controls.Add(this.problemViewHost);
    130132      this.problemTabPage.Location = new System.Drawing.Point(4, 22);
    131133      this.problemTabPage.Name = "problemTabPage";
     
    135137      this.problemTabPage.Text = "Problem";
    136138      this.problemTabPage.UseVisualStyleBackColor = true;
     139      //
     140      // problemPanel
     141      //
     142      this.problemPanel.AllowDrop = true;
     143      this.problemPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     144                  | System.Windows.Forms.AnchorStyles.Left)
     145                  | System.Windows.Forms.AnchorStyles.Right)));
     146      this.problemPanel.Controls.Add(this.problemViewHost);
     147      this.problemPanel.Location = new System.Drawing.Point(6, 36);
     148      this.problemPanel.Name = "problemPanel";
     149      this.problemPanel.Size = new System.Drawing.Size(659, 332);
     150      this.problemPanel.TabIndex = 3;
     151      this.problemPanel.DragOver += new System.Windows.Forms.DragEventHandler(this.problemPanel_DragEnterOver);
     152      this.problemPanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.problemPanel_DragDrop);
     153      this.problemPanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.problemPanel_DragEnterOver);
     154      //
     155      // problemViewHost
     156      //
     157      this.problemViewHost.Content = null;
     158      this.problemViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
     159      this.problemViewHost.Location = new System.Drawing.Point(0, 0);
     160      this.problemViewHost.Name = "problemViewHost";
     161      this.problemViewHost.Size = new System.Drawing.Size(659, 332);
     162      this.problemViewHost.TabIndex = 0;
     163      this.problemViewHost.ViewType = null;
    137164      //
    138165      // saveProblemButton
     
    169196      this.newProblemButton.Click += new System.EventHandler(this.newProblemButton_Click);
    170197      //
    171       // problemViewHost
    172       //
    173       this.problemViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    174                   | System.Windows.Forms.AnchorStyles.Left)
    175                   | System.Windows.Forms.AnchorStyles.Right)));
    176       this.problemViewHost.Content = null;
    177       this.problemViewHost.Location = new System.Drawing.Point(6, 36);
    178       this.problemViewHost.Name = "problemViewHost";
    179       this.problemViewHost.Size = new System.Drawing.Size(659, 332);
    180       this.problemViewHost.TabIndex = 3;
    181       this.problemViewHost.ViewType = null;
    182       //
    183198      // resultsTabPage
    184199      //
     
    203218      this.resultsView.Size = new System.Drawing.Size(659, 362);
    204219      this.resultsView.TabIndex = 0;
     220      //
     221      // runsTabPage
     222      //
     223      this.runsTabPage.Controls.Add(this.runsView);
     224      this.runsTabPage.Location = new System.Drawing.Point(4, 22);
     225      this.runsTabPage.Name = "runsTabPage";
     226      this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
     227      this.runsTabPage.Size = new System.Drawing.Size(671, 374);
     228      this.runsTabPage.TabIndex = 3;
     229      this.runsTabPage.Text = "Runs";
     230      this.runsTabPage.UseVisualStyleBackColor = true;
     231      //
     232      // runsView
     233      //
     234      this.runsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     235                  | System.Windows.Forms.AnchorStyles.Left)
     236                  | System.Windows.Forms.AnchorStyles.Right)));
     237      this.runsView.Caption = "RunCollection";
     238      this.runsView.Content = null;
     239      this.runsView.Location = new System.Drawing.Point(6, 6);
     240      this.runsView.Name = "runsView";
     241      this.runsView.Size = new System.Drawing.Size(659, 362);
     242      this.runsView.TabIndex = 0;
    205243      //
    206244      // startButton
     
    285323      this.stopButton.UseVisualStyleBackColor = true;
    286324      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
    287       //
    288       // runsTabPage
    289       //
    290       this.runsTabPage.Controls.Add(this.runsView);
    291       this.runsTabPage.Location = new System.Drawing.Point(4, 22);
    292       this.runsTabPage.Name = "runsTabPage";
    293       this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
    294       this.runsTabPage.Size = new System.Drawing.Size(671, 374);
    295       this.runsTabPage.TabIndex = 3;
    296       this.runsTabPage.Text = "Runs";
    297       this.runsTabPage.UseVisualStyleBackColor = true;
    298       //
    299       // runsView
    300       //
    301       this.runsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    302                   | System.Windows.Forms.AnchorStyles.Left)
    303                   | System.Windows.Forms.AnchorStyles.Right)));
    304       this.runsView.Caption = "RunCollection";
    305       this.runsView.Content = null;
    306       this.runsView.Location = new System.Drawing.Point(6, 6);
    307       this.runsView.Name = "runsView";
    308       this.runsView.Size = new System.Drawing.Size(659, 362);
    309       this.runsView.TabIndex = 0;
    310325      //
    311326      // AlgorithmView
     
    337352      this.parametersTabPage.ResumeLayout(false);
    338353      this.problemTabPage.ResumeLayout(false);
     354      this.problemPanel.ResumeLayout(false);
    339355      this.resultsTabPage.ResumeLayout(false);
    340356      this.runsTabPage.ResumeLayout(false);
     
    366382    protected System.Windows.Forms.TabPage runsTabPage;
    367383    protected RunCollectionView runsView;
     384    protected System.Windows.Forms.Panel problemPanel;
    368385
    369386  }
Note: See TracChangeset for help on using the changeset viewer.