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