19 references to SourceProperties
PresentationFramework (19)
System\Windows\Data\Binding.cs (19)
336if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.StaticSource || 343throw new InvalidOperationException(SR.Format(SR.BindingConflict, SourceProperties.StaticSource, _sourceInUse)); 528if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.Source) 542throw new InvalidOperationException(SR.Format(SR.BindingConflict, SourceProperties.Source, _sourceInUse)); 570if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.RelativeSource) 576throw new InvalidOperationException(SR.Format(SR.BindingConflict, SourceProperties.RelativeSource, _sourceInUse)); 589if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.ElementName) 595throw new InvalidOperationException(SR.Format(SR.BindingConflict, SourceProperties.ElementName, _sourceInUse)); 824(_source == UnsetSource) ? SourceProperties.None : 825(HasValue(Feature.RelativeSource)) ? SourceProperties.RelativeSource : 826(HasValue(Feature.ElementSource)) ? SourceProperties.ElementName : 827(HasValue(Feature.ObjectSource)) ? SourceProperties.Source : 828(_source == StaticSourceRef) ? SourceProperties.StaticSource : 829SourceProperties.InternalSource; 838SourceProperties _sourceInUse;