private void AddLabel_MouseClick(object sender, EventArgs e) { Dialogs.Album alb = new Dialogs.Album(); alb.Initialize(); alb.ShowDialog(); UpdateRequest?.Invoke(this, new EventArgs()); }
private void EditLabel_MouseClick(object sender, EventArgs e) { if (Current != null) { Dialogs.Album alb = new Dialogs.Album(); alb.Initialize(Current, Current.Path); alb.ShowDialog(); UpdateRequest?.Invoke(this, new EventArgs()); } }