Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Core/Interfaces/IHoverListener.cs @ 2768

Last change on this file since 2768 was 2768, checked in by mkommend, 14 years ago

added solution folders and sources for the netron library (ticket #867)

File size: 435 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using System.Windows.Forms;
5using System.Drawing;
6namespace Netron.Diagramming.Core
7{
8    /// <summary>
9    /// Hover service
10    /// </summary>
11    public interface IHoverListener : IInteraction
12    {         
13        void MouseHover(MouseEventArgs e);
14        void MouseEnter(MouseEventArgs e);
15        void MouseLeave(MouseEventArgs e);
16
17    }
18}
Note: See TracBrowser for help on using the repository browser.