Skip to content

Commit 5edd883

Browse files
committed
Restored TPropertyType Value property
1 parent 4a45247 commit 5edd883

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

components/LayoutTransformControl/src/PropertyChangeEventSource.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@ internal partial class PropertyChangeEventSource<TPropertyType>
1919
/// </summary>
2020
public event EventHandler<TPropertyType> ValueChanged;
2121

22+
/// <summary>
23+
/// Gets the Value property.
24+
/// </summary>
25+
public TPropertyType Value
26+
{
27+
get => (TPropertyType)_source.GetValue(_property);
28+
set => _source.SetValue(_property, value);
29+
}
30+
2231
/// <summary>
2332
/// Initializes a new instance of the <see cref="PropertyChangeEventSource{TPropertyType}"/> class.
2433
/// </summary>

tooling

0 commit comments

Comments
 (0)