Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/27/11 02:37:02 (12 years ago)
Author:
swagner
Message:

Added information icon in VariableValueView and ResultValueView, corrected tooltip update in NamedItemCollectionView and reverted changes of r6631 (#1054).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/NamedItemCollectionView.cs

    r5837 r7235  
    7777      return listViewItem;
    7878    }
     79    protected override void UpdateListViewItemText(ListViewItem listViewItem) {
     80      base.UpdateListViewItemText(listViewItem);
     81      T item = listViewItem.Tag as T;
     82      if ((item != null) && !string.IsNullOrEmpty(item.Description)) {
     83        listViewItem.ToolTipText = item.ItemName + ": " + item.Description;
     84      }
     85    }
    7986
    8087    #region ListView Events
Note: See TracChangeset for help on using the changeset viewer.