Guest User

Untitled

a guest
Jul 17th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. private void OnTouchEnter(object sender, RoutedEventArgs e)
  2. {
  3. ToolTip tt = new ToolTip();
  4. tt.Content = "My tooltip text";
  5. myComponentName.ToolTip=tt;
  6. tt.IsOpen = true;
  7. }
Add Comment
Please, Sign In to add comment