/// <inheritdoc /> public void Apply() { if (_disposed) { throw new ObjectDisposedException("DataBinding"); } if (Converter == null) { return; } TProperty converterValue = Converter.GetValue(); TProperty value = GetValue(converterValue); Converter.ApplyValue(value); }