using System; using System.Windows; namespace Microsoft.Research.DynamicDataDisplay.DataSources { /// Mapping class holds information about mapping of TSource type /// to some DependencyProperty. /// Mapping source type. internal sealed class Mapping { /// Property that will be set. internal DependencyProperty Property { get; set; } /// Function that computes value for property from TSource type. internal Func F { get; set; } } }