19 references to SourceProperties
PresentationFramework (19)
System\Windows\Data\Binding.cs (19)
311if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.StaticSource || 318throw new InvalidOperationException(SR.Format(SR.BindingConflict, SourceProperties.StaticSource, _sourceInUse)); 503if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.Source) 517throw new InvalidOperationException(SR.Format(SR.BindingConflict, SourceProperties.Source, _sourceInUse)); 545if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.RelativeSource) 551throw new InvalidOperationException(SR.Format(SR.BindingConflict, SourceProperties.RelativeSource, _sourceInUse)); 564if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.ElementName) 570throw new InvalidOperationException(SR.Format(SR.BindingConflict, SourceProperties.ElementName, _sourceInUse)); 799(_source == UnsetSource) ? SourceProperties.None : 800(HasValue(Feature.RelativeSource)) ? SourceProperties.RelativeSource : 801(HasValue(Feature.ElementSource)) ? SourceProperties.ElementName : 802(HasValue(Feature.ObjectSource)) ? SourceProperties.Source : 803(_source == StaticSourceRef) ? SourceProperties.StaticSource : 804SourceProperties.InternalSource; 813SourceProperties _sourceInUse;