Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Common/Auxiliary/BindingHelper.cs @ 13398

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

#2283 added GUI and charts; fixed MCTS

File size: 441 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Windows.Data;
6using System.Windows;
7
8namespace Microsoft.Research.DynamicDataDisplay.Common.Auxiliary
9{
10  public static class BindingHelper
11  {
12    public static Binding CreateAttachedPropertyBinding(DependencyProperty attachedProperty)
13    {
14      return new Binding { Path = new PropertyPath("(0)", attachedProperty) };
15    }
16  }
17}
Note: See TracBrowser for help on using the repository browser.