/Main/src/DynamicDataDisplay/Charts/Legend items/LegendItem.cs
# · C# · 33 lines · 19 code · 3 blank · 11 comment · 0 complexity · 9ad1d7f069c5dee149cf2929359eecde MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Windows.Controls;
- using System.Windows;
- using System.Windows.Media.Animation;
- using System.ComponentModel;
-
- namespace Microsoft.Research.DynamicDataDisplay.Charts
- {
- public class LegendItem : Control
- {
- static LegendItem()
- {
- var thisType = typeof(LegendItem);
- DefaultStyleKeyProperty.OverrideMetadata(thisType, new FrameworkPropertyMetadata(thisType));
- }
-
- //public object VisualContent
- //{
- // get { return NewLegend.GetVisualContent(this); }
- // set { NewLegend.SetVisualContent(this, value); }
- //}
-
- //[Bindable(true)]
- //public object Description
- //{
- // get { return NewLegend.GetDescription(this); }
- // set { NewLegend.SetDescription(this, value); }
- //}
- }
- }