Bind icon indicating copy to clipboard operation
Bind copied to clipboard

Exception when attempting to update read-only property

Open JosiCoder opened this issue 7 years ago • 0 comments

Within Bind.cs, around line 100, I would propose to check for read-only property using CanWrite:

            } else if (p != null) {
                if(p.CanWrite) {
                    p.SetValue(target, value, null);
                }

JosiCoder avatar Oct 26 '16 19:10 JosiCoder