Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Common/Auxiliary/MarkupExtensions/TemplateBinding.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: 499 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Windows.Data;
6
7namespace Microsoft.Research.DynamicDataDisplay.MarkupExtensions
8{
9  public class TemplateBinding : Binding
10  {
11    public TemplateBinding()
12    {
13      RelativeSource = new RelativeSource { Mode = RelativeSourceMode.TemplatedParent };
14    }
15
16    public TemplateBinding(string propertyPath)
17      : this()
18    {
19      Path = new System.Windows.PropertyPath(propertyPath);
20    }
21  }
22}
Note: See TracBrowser for help on using the repository browser.