Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Windows.Data;
|
---|
6 | using System.Windows;
|
---|
7 |
|
---|
8 | namespace 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.