Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/27/10 16:45:31 (14 years ago)
Author:
mkommend
Message:

Enabled dropping of values on various views (ticket #1155).

File:
1 edited

Legend:

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

    r4011 r4522  
    9494      // algorithmTabPage
    9595      //
     96      this.algorithmTabPage.AllowDrop = true;
    9697      this.algorithmTabPage.Controls.Add(this.algorithmViewHost);
    9798      this.algorithmTabPage.Controls.Add(this.openAlgorithmButton);
     
    104105      this.algorithmTabPage.Text = "Algorithm";
    105106      this.algorithmTabPage.UseVisualStyleBackColor = true;
     107      this.algorithmTabPage.DragOver += new System.Windows.Forms.DragEventHandler(this.algorithmTabPage_DragEnterOver);
     108      this.algorithmTabPage.DragDrop += new System.Windows.Forms.DragEventHandler(this.algorithmTabPage_DragDrop);
     109      this.algorithmTabPage.DragEnter += new System.Windows.Forms.DragEventHandler(this.algorithmTabPage_DragEnterOver);
    106110      //
    107111      // algorithmViewHost
    108112      //
    109113      this.algorithmViewHost.Content = null;
    110       this.algorithmViewHost.AllowDrop = true;
    111114      this.algorithmViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    112115                  | System.Windows.Forms.AnchorStyles.Left)
     
    117120      this.algorithmViewHost.TabIndex = 3;
    118121      this.algorithmViewHost.ViewType = null;
    119       this.algorithmViewHost.DragOver += new System.Windows.Forms.DragEventHandler(this.algorithmViewHost_DragEnterOver);
    120       this.algorithmViewHost.DragDrop += new System.Windows.Forms.DragEventHandler(this.algorithmViewHost_DragDrop);
    121       this.algorithmViewHost.DragEnter += new System.Windows.Forms.DragEventHandler(this.algorithmViewHost_DragEnterOver);
    122122      //
    123123      // openAlgorithmButton
Note: See TracChangeset for help on using the changeset viewer.