We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c11cef commit 940117aCopy full SHA for 940117a
src/Shared/HandyControl_Shared/Controls/PropertyGrid/Editors/PropertyEditorBase.cs
@@ -9,7 +9,7 @@ public abstract class PropertyEditorBase : DependencyObject
9
10
public virtual void CreateBinding(PropertyItem propertyItem, DependencyObject element) =>
11
BindingOperations.SetBinding(element, GetDependencyProperty(),
12
- new Binding($"({propertyItem.PropertyName})")
+ new Binding($"{propertyItem.PropertyName}")
13
{
14
Source = propertyItem.Value,
15
Mode = GetBindingMode(propertyItem),
0 commit comments