Browse Source

Binding.Source may be null.

pull/58/head
Steven Kirk 11 years ago
parent
commit
921b0ca725
  1. 2
      Perspex.Base/Binding.cs

2
Perspex.Base/Binding.cs

@ -44,7 +44,7 @@ namespace Perspex
set;
}
public string Description => string.Format("{0}.{1}", this.Source.GetType().Name, this.Property.Name);
public string Description => string.Format("{0}.{1}", this.Source?.GetType().Name, this.Property.Name);
public static Binding operator !(Binding binding)
{

Loading…
Cancel
Save