Пример #1
0
        private void labelNotifications_Click(object sender, EventArgs e)
        {
            FormNotifications notifications = new FormNotifications(Department.Finance);

            notifications.ReceiveMessages();
            notifications.Show();
        }
Пример #2
0
        private void lblNotification_Click(object sender, EventArgs e)
        {
            FormNotifications salesNotification = new FormNotifications(Department.Sales);

            salesNotification.ReceiveMessages();
            salesNotification.Show();
        }
Пример #3
0
        private void Notificationlbl_Click(object sender, EventArgs e)
        {
            FormNotifications notifications = new FormNotifications(Department.Development);

            notifications.Show();
        }
Пример #4
0
 public FormMessage(FormNotifications notifications)
 {
     InitializeComponent();
     this.notifications = notifications;
 }