Changeset 5852 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/Administration
- Timestamp:
- 03/29/11 00:31:42 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/Administration/ResourcesView.cs
r5711 r5852 84 84 tn.Tag = g; 85 85 tn.Text = g.Name; 86 foreach ( Slave sin Content.Where(s => s.ParentResourceId != null && s.ParentResourceId == g.Id)) {87 var stn = new TreeNode( s.Name);86 foreach (Resource r in Content.Where(s => s.ParentResourceId != null && s.ParentResourceId == g.Id)) { 87 var stn = new TreeNode(r.Name); 88 88 stn.ImageIndex = 0; 89 89 stn.SelectedImageIndex = stn.ImageIndex; 90 stn.Tag = s;90 stn.Tag = r; 91 91 tn.Nodes.Add(stn); 92 92 }
Note: See TracChangeset
for help on using the changeset viewer.