9 references to EffectiveStringFormat
PresentationFramework (9)
System\Windows\Data\BindingExpression.cs (2)
1388else if (implicitConverter != null || EffectiveStringFormat != null) 1622string stringFormat = EffectiveStringFormat;
System\Windows\Data\MultiBindingExpression.cs (7)
176Debug.Assert(ParentMultiBinding.Converter != null || !String.IsNullOrEmpty(EffectiveStringFormat), 182if (_converter == null && String.IsNullOrEmpty(EffectiveStringFormat) && TraceData.IsEnabled) 1190else if (EffectiveStringFormat != null) 1214if (EffectiveStringFormat == null || preFormattedValue == Binding.DoNothing || preFormattedValue == DependencyProperty.UnsetValue) 1227value = String.Format(culture, EffectiveStringFormat, _tempValues); 1231value = String.Format(culture, EffectiveStringFormat, preFormattedValue); 1253EffectiveStringFormat),