Advertisement
D3NCE

ANIMATION IN WINFORMS – PART 3 – NOTIFICATIONS

Dec 22nd, 2018
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.69 KB | None | 0 0
  1. Video URL: https://www.youtube.com/watch?v=m50PmzobMRw
  2.  
  3. Hier der Programmcode:
  4.  
  5. using System;
  6. using System.Collections.Generic;
  7. using System.ComponentModel;
  8. using System.Data;
  9. using System.Drawing;
  10. using System.Linq;
  11. using System.Text;
  12. using System.Threading.Tasks;
  13. using System.Windows.Forms;
  14. using Tulpep.NotificationWindow;
  15.  
  16. namespace AiWF4___Notifications
  17. {
  18. public partial class Form1 : Form
  19. {
  20. public Form1()
  21. {
  22. InitializeComponent();
  23. }
  24.  
  25. private void bttn_notification_Click(object sender, EventArgs e)
  26. {
  27. PopupNotifier popup = new PopupNotifier();
  28.  
  29. popup.TitleText = "D3NCE von Youtube";
  30. popup.ContentText = "Ich bin schneller weg als du denkst";
  31. popup.Popup();
  32. }
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement