Changeset 5859
- Timestamp:
- 03/29/11 11:52:07 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core.Views/3.3/TypeSelector.cs
r5850 r5859 114 114 foreach (IPluginDescription plugin in plugins) { 115 115 TreeNode pluginNode = new TreeNode(); 116 pluginNode.Text = plugin.Name;116 pluginNode.Text = string.Format("{0} [{1}.{2}]", plugin.Name, plugin.Version.Major, plugin.Version.Minor); 117 117 pluginNode.ImageIndex = 1; 118 118 pluginNode.SelectedImageIndex = pluginNode.ImageIndex;
Note: See TracChangeset
for help on using the changeset viewer.