/// <summary>
 ///     Initializes a new instance of the <see cref="FieldBindingBaseAttribute" />
 ///     with a path to the binding source.
 /// </summary>
 protected FieldBindingBaseAttribute(string path)
 {
     Binding = new BindingInfo(path);
 }
 /// <summary>
 ///     Initializes a new instance of the <see cref="FieldBindingBaseAttribute" />.
 /// </summary>
 protected FieldBindingBaseAttribute()
 {
     Binding = new BindingInfo();
 }