Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 00:44:01 (14 years ago)
Author:
swagner
Message:

Sorted usings and removed unused usings in entire solution (#1094)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Core/Interfaces/IDragDropListener.cs

    r2768 r4068  
    11using System;
    2 using System.Collections.Generic;
    3 using System.Text;
    42using System.Windows.Forms;
    5 namespace Netron.Diagramming.Core
    6 {
    7     public interface IDragDropListener : IInteraction
    8     {
     3namespace Netron.Diagramming.Core {
     4  public interface IDragDropListener : IInteraction {
    95
    10         /// <summary>
    11         /// On dragdrop.
    12         /// </summary>
    13         /// <param name="e">The <see cref="T:KeyEventArgs"/> instance containing the event data.</param>
    14         bool OnDragDrop(DragEventArgs e);
     6    /// <summary>
     7    /// On dragdrop.
     8    /// </summary>
     9    /// <param name="e">The <see cref="T:KeyEventArgs"/> instance containing the event data.</param>
     10    bool OnDragDrop(DragEventArgs e);
    1511
    16         /// <summary>
    17         ///   On drag enter
    18         /// </summary>
    19         /// <param name="e"></param>
    20         bool OnDragEnter(DragEventArgs e);
    21         /// <summary>
    22         /// On drag leave.
    23         /// </summary>
    24         /// <param name="e">The <see cref="T:KeyEventArgs"/> instance containing the event data.</param>
    25         bool OnDragLeave(EventArgs e);
     12    /// <summary>
     13    ///   On drag enter
     14    /// </summary>
     15    /// <param name="e"></param>
     16    bool OnDragEnter(DragEventArgs e);
     17    /// <summary>
     18    /// On drag leave.
     19    /// </summary>
     20    /// <param name="e">The <see cref="T:KeyEventArgs"/> instance containing the event data.</param>
     21    bool OnDragLeave(EventArgs e);
    2622
    27         /// <summary>
    28         /// On drag over.
    29         /// </summary>
    30         /// <param name="e">The <see cref="T:KeyPressEventArgs"/> instance containing the event data.</param>
    31         bool OnDragOver(DragEventArgs e);
     23    /// <summary>
     24    /// On drag over.
     25    /// </summary>
     26    /// <param name="e">The <see cref="T:KeyPressEventArgs"/> instance containing the event data.</param>
     27    bool OnDragOver(DragEventArgs e);
    3228
    33         /// <summary>
    34         /// Gives the feedback on dragging.
    35         /// </summary>
    36         /// <param name="e">The <see cref="T:System.Windows.Forms.GiveFeedbackEventArgs"/> instance containing the event data.</param>
    37         void GiveFeedback(GiveFeedbackEventArgs e);
     29    /// <summary>
     30    /// Gives the feedback on dragging.
     31    /// </summary>
     32    /// <param name="e">The <see cref="T:System.Windows.Forms.GiveFeedbackEventArgs"/> instance containing the event data.</param>
     33    void GiveFeedback(GiveFeedbackEventArgs e);
    3834
    39     }
     35  }
    4036}
Note: See TracChangeset for help on using the changeset viewer.