Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. protected override void OnAttached()
  2. {
  3. toolTip = new ToolTip();
  4.  
  5. timer = new Timer();
  6. timer.Interval = 10000;
  7. timer.Elapsed += OnTimerElapsed;
  8.  
  9. AssociatedObject.MouseLeave += OnMouseLeave;
  10. AssociatedObject.MouseUp += OnMouseUp;
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement