Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Charts/Legend items/LegendItem.cs @ 12503

Last change on this file since 12503 was 12503, checked in by aballeit, 9 years ago

#2283 added GUI and charts; fixed MCTS

File size: 840 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Windows.Controls;
6using System.Windows;
7using System.Windows.Media.Animation;
8using System.ComponentModel;
9
10namespace 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.