9 references to EffectiveStringFormat
PresentationFramework (9)
System\Windows\Data\BindingExpression.cs (2)
1393else if (implicitConverter != null || EffectiveStringFormat != null) 1627string stringFormat = EffectiveStringFormat;
System\Windows\Data\MultiBindingExpression.cs (7)
177Debug.Assert(ParentMultiBinding.Converter != null || !String.IsNullOrEmpty(EffectiveStringFormat), 183if (_converter == null && String.IsNullOrEmpty(EffectiveStringFormat) && TraceData.IsEnabled) 1191else if (EffectiveStringFormat != null) 1215if (EffectiveStringFormat == null || preFormattedValue == Binding.DoNothing || preFormattedValue == DependencyProperty.UnsetValue) 1228value = String.Format(culture, EffectiveStringFormat, _tempValues); 1232value = String.Format(culture, EffectiveStringFormat, preFormattedValue); 1254EffectiveStringFormat),