using System.Windows.Controls; namespace OpenEarth.EnhancedListBoxes { public class CheckListBoxIndicatorItem { public CheckListBoxIndicatorItem(double dblOffset, bool bolIsSelected, ListBoxItem lbiRelatedListBoxItem) { Offset = dblOffset; IsSelected = bolIsSelected; RelatedListBoxItem = lbiRelatedListBoxItem; } public double Offset { get; set; } public bool IsSelected { get; set; } public ListBoxItem RelatedListBoxItem { get; set; } } }