■ ToolTipService 클래스의 SetToolTip 정적 메소드를 사용해 툴팁을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 |
using Microsoft.UI.Xaml.Controls; TextBlock textBlock; ... string text = "툴팁 문자열입니다."; ToolTipService.SetToolTip(textBlock, text); |
■ ToolTipService 클래스의 SetToolTip 정적 메소드를 사용해 툴팁을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 |
using Microsoft.UI.Xaml.Controls; TextBlock textBlock; ... string text = "툴팁 문자열입니다."; ToolTipService.SetToolTip(textBlock, text); |