blob: 79d4f1c714f9402c8baae928a25d455367841bec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace Tango.SharedUI
{
/// <summary>
/// Represents a binding property.
/// </summary>
public class BindingProperty
{
/// <summary>
/// Gets or sets the dependency property.
/// </summary>
public DependencyProperty DependencyProperty { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="BindingProperty"/> class.
/// </summary>
public BindingProperty()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="BindingProperty"/> class.
/// </summary>
/// <param name="dp">The dependency property.</param>
/// <param name="mode">The mode.</param>
public BindingProperty(DependencyProperty dp) : this()
{
DependencyProperty = dp;
}
}
}
|