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