コード例 #1
0
ファイル: FormFinance.cs プロジェクト: GroupRadius2/Barroc-IT
        private void labelNotifications_Click(object sender, EventArgs e)
        {
            FormNotifications notifications = new FormNotifications(Department.Finance);

            notifications.ReceiveMessages();
            notifications.Show();
        }
コード例 #2
0
ファイル: Sales dash.cs プロジェクト: GroupRadius2/Barroc-IT
        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;
 }