Guest User

Untitled

a guest
Jun 24th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. [STAThread]
  2. static void Main()
  3. { // example code only... doesn't do cleanup
  4. Application.EnableVisualStyles();
  5. Button btn = new Button();
  6. Form form = new Form();
  7. form.Controls.Add(btn);
  8. ToolTip ttip = new ToolTip();
  9. ttip.SetToolTip(btn, "Hello world");
  10. Application.Run(form);
  11. }
  12.  
  13. form.Shown += delegate {
  14. ttip.Show("hi", form, 0,0, 3000);
  15. };
Add Comment
Please, Sign In to add comment