Skip to content

Commit 940117a

Browse files
committed
fixed #486
1 parent 5c11cef commit 940117a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Shared/HandyControl_Shared/Controls/PropertyGrid/Editors/PropertyEditorBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public abstract class PropertyEditorBase : DependencyObject
99

1010
public virtual void CreateBinding(PropertyItem propertyItem, DependencyObject element) =>
1111
BindingOperations.SetBinding(element, GetDependencyProperty(),
12-
new Binding($"({propertyItem.PropertyName})")
12+
new Binding($"{propertyItem.PropertyName}")
1313
{
1414
Source = propertyItem.Value,
1515
Mode = GetBindingMode(propertyItem),

0 commit comments

Comments
 (0)