1. C# ToolTip 컨트롤에 자기 Name을 tooltip으로 보여주고 싶다. 2. 코드ToolTip toolTip = new ToolTip(); toolTip.ShowAlways = true; toolTip.SetToolTip(컨트롤, 툴팁내용); toolTip.SetToolTip(txt, txt.Name); toolTip.SetToolTip(grd, grd.Name); //이런 속성도 있지만 그닥 사용할 필요는 ...//toolTip.AutoPopDelay = 3000; //toolTip.InitialDelay = 2000; //toolTip.ReshowDelay = 1000; //toolTip.IsBalloon = true; //별로. 3. 둥.