9 references to EffectiveStringFormat
PresentationFramework (9)
System\Windows\Data\BindingExpression.cs (2)
1402else if (implicitConverter != null || EffectiveStringFormat != null) 1636string stringFormat = EffectiveStringFormat;
System\Windows\Data\MultiBindingExpression.cs (7)
188Debug.Assert(ParentMultiBinding.Converter != null || !String.IsNullOrEmpty(EffectiveStringFormat), 194if (_converter == null && String.IsNullOrEmpty(EffectiveStringFormat) && TraceData.IsEnabled) 1202else if (EffectiveStringFormat != null) 1226if (EffectiveStringFormat == null || preFormattedValue == Binding.DoNothing || preFormattedValue == DependencyProperty.UnsetValue) 1239value = String.Format(culture, EffectiveStringFormat, _tempValues); 1243value = String.Format(culture, EffectiveStringFormat, preFormattedValue); 1265EffectiveStringFormat),