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