public SimpleViewForm(NotificationForm parent, List<Plugins.INotifier> parentNotifiers, List<Objects.Notification> parentNotifications) { InitializeComponent(); this.parentForm = parent; this.simpleViewControl.InitializeNotificationsCount(parentNotifiers, parentNotifications); }
public SimpleNotificationForm(NotificationForm parent, List<Objects.Notification> parentNotifications) { InitializeComponent(); twitterOptions = twitterPlugin.GetAllAvailableOptions(); notificationCategoryBox.Items.Clear(); notificationCategoryBox.Items.Add(twitterPlugin.NotificationApplication + " (0)"); notificationCategoryBox.Items.Add("Facebook (0)"); this.parentForm = parent; this.notifications = parentNotifications; update(); }