Changeset 4500
- Timestamp:
- 09/26/10 04:37:50 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core.Views/3.3/Clipboard.cs
r4453 r4500 332 332 if (items.Any()) { 333 333 string itemNames = string.Join(Environment.NewLine, items.Select(item => item.ToString()).ToArray()); 334 MessageBox.Show("The following items could not be saved, because they are locked (e.g. used in a running algorithm). All other items will be saved."+335 Environment.NewLine + itemNames, "Couldnot save all items", MessageBoxButtons.OK, MessageBoxIcon.Warning);334 MessageBox.Show("The following items are not saved, because they are locked (e.g. used in a running algorithm):" + Environment.NewLine + Environment.NewLine + 335 itemNames + Environment.NewLine + Environment.NewLine + "All other items will be saved.", "Cannot save all items", MessageBoxButtons.OK, MessageBoxIcon.Warning); 336 336 } 337 337 Save();
Note: See TracChangeset
for help on using the changeset viewer.