External/Aga.Controls/Tree/IToolTipProvider.cs
author moel.mich
Sun, 18 Aug 2013 21:44:08 +0000
changeset 421 055a9ec117d2
permissions -rw-r--r--
Fixed a few stability issues in the logging implementation. Added support for logging sensors once the reappear.
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Text;
     4 using Aga.Controls.Tree.NodeControls;
     5 
     6 namespace Aga.Controls.Tree
     7 {
     8 	public interface IToolTipProvider
     9 	{
    10 		string GetToolTip(TreeNodeAdv node, NodeControl nodeControl);
    11 	}
    12 }