9 references to EffectiveStringFormat
PresentationFramework (9)
src\Framework\System\Windows\Data\BindingExpression.cs (2)
1392else if (implicitConverter != null || EffectiveStringFormat != null) 1620string stringFormat = EffectiveStringFormat;
src\Framework\System\Windows\Data\MultiBindingExpression.cs (7)
192Debug.Assert(ParentMultiBinding.Converter != null || !String.IsNullOrEmpty(EffectiveStringFormat), 198if (_converter == null && String.IsNullOrEmpty(EffectiveStringFormat)) 1200else if (EffectiveStringFormat != null) 1224if (EffectiveStringFormat == null || preFormattedValue == Binding.DoNothing || preFormattedValue == DependencyProperty.UnsetValue) 1237value = String.Format(culture, EffectiveStringFormat, _tempValues); 1241value = String.Format(culture, EffectiveStringFormat, preFormattedValue); 1262EffectiveStringFormat));