Browse Source

NumericUpDown: fixed small issue with FormatString.

pull/1645/head
brianlagunas_cp 15 years ago
parent
commit
d6134885b2
  1. 3
      ExtendedWPFToolkitSolution/Src/WPFToolkit.Extended/NumericUpDown/Implementation/NumericUpDown.cs

3
ExtendedWPFToolkitSolution/Src/WPFToolkit.Extended/NumericUpDown/Implementation/NumericUpDown.cs

@ -92,7 +92,8 @@ namespace Microsoft.Windows.Controls
protected virtual void OnStringFormatChanged(string oldValue, string newValue) protected virtual void OnStringFormatChanged(string oldValue, string newValue)
{ {
SyncTextAndValueProperties(NumericUpDown.TextProperty, Value); //Don't think this is needed anymore
//SyncTextAndValueProperties(NumericUpDown.TextProperty, Value);
} }
#endregion //FormatString #endregion //FormatString

Loading…
Cancel
Save