Как обновить элемент управления MDI при сохранении данных дочерней формы ?
У меня есть метод в моей форме MDI, когда когда-либо дочерняя форма сохранит данные, она обновит элемент управления MDI.
Что я уже пробовал:
public delegate void ShowAlert(string Message,AlertNotification alertType); public void ShowAlertOnStatusBar(string Message,AlertNotification alertType) { switch(alertType) { case AlertNotification.success: this.Name = Message; this.toolNotificationStatusLabel1.Text = string.Empty; toolNotificationStatusLabel1.Text = Message; toolNotificationStatusLabel1.ForeColor = Color.Green; break; case AlertNotification.error: toolNotificationStatusLabel1.Text = Message; toolNotificationStatusLabel1.ForeColor = Color.Red; break; case AlertNotification.info: toolNotificationStatusLabel1.Text = Message; toolNotificationStatusLabel1.ForeColor = Color.SkyBlue; break; } }