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