19 references to SourceProperties
PresentationFramework (19)
System\Windows\Data\Binding.cs (19)
310if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.StaticSource || 317throw new InvalidOperationException(SR.Format(SR.BindingConflict, SourceProperties.StaticSource, _sourceInUse)); 502if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.Source) 516throw new InvalidOperationException(SR.Format(SR.BindingConflict, SourceProperties.Source, _sourceInUse)); 544if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.RelativeSource) 550throw new InvalidOperationException(SR.Format(SR.BindingConflict, SourceProperties.RelativeSource, _sourceInUse)); 563if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.ElementName) 569throw new InvalidOperationException(SR.Format(SR.BindingConflict, SourceProperties.ElementName, _sourceInUse)); 798(_source == UnsetSource) ? SourceProperties.None : 799(HasValue(Feature.RelativeSource)) ? SourceProperties.RelativeSource : 800(HasValue(Feature.ElementSource)) ? SourceProperties.ElementName : 801(HasValue(Feature.ObjectSource)) ? SourceProperties.Source : 802(_source == StaticSourceRef) ? SourceProperties.StaticSource : 803SourceProperties.InternalSource; 812private SourceProperties _sourceInUse;