Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Windows.Controls;
|
---|
6 | using System.Windows;
|
---|
7 | using System.Windows.Media.Animation;
|
---|
8 | using System.ComponentModel;
|
---|
9 |
|
---|
10 | namespace Microsoft.Research.DynamicDataDisplay.Charts
|
---|
11 | {
|
---|
12 | public class LegendItem : Control
|
---|
13 | {
|
---|
14 | static LegendItem()
|
---|
15 | {
|
---|
16 | var thisType = typeof(LegendItem);
|
---|
17 | DefaultStyleKeyProperty.OverrideMetadata(thisType, new FrameworkPropertyMetadata(thisType));
|
---|
18 | }
|
---|
19 |
|
---|
20 | //public object VisualContent
|
---|
21 | //{
|
---|
22 | // get { return NewLegend.GetVisualContent(this); }
|
---|
23 | // set { NewLegend.SetVisualContent(this, value); }
|
---|
24 | //}
|
---|
25 |
|
---|
26 | //[Bindable(true)]
|
---|
27 | //public object Description
|
---|
28 | //{
|
---|
29 | // get { return NewLegend.GetDescription(this); }
|
---|
30 | // set { NewLegend.SetDescription(this, value); }
|
---|
31 | //}
|
---|
32 | }
|
---|
33 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.