External/Aga.Controls/Tree/IToolTipProvider.cs
author moel.mich
Sun, 30 Jun 2013 11:41:36 +0000
changeset 408 bbeb9004c491
permissions -rw-r--r--
Added support for the Fintek F71869A (F71868AD) super I/O chip.
     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 }