Skip to content

Commit

Permalink
fix: 更正 SubtractNumberConverter 命名
Browse files Browse the repository at this point in the history
  • Loading branch information
SlimeNull committed Apr 25, 2024
1 parent 1c49426 commit 690522f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace EleCho.WpfSuite
{
public class SubstractNumberConverter : SingletonValueConverterBase<SubstractNumberConverter>
public class SubtractNumberConverter : SingletonValueConverterBase<SubtractNumberConverter>
{
public double Value
{
Expand All @@ -30,6 +30,6 @@ public double Value

// Using a DependencyProperty as the backing store for Value. This enables animation, styling, binding, etc...
public static readonly DependencyProperty ValueProperty =
DependencyProperty.Register(nameof(Value), typeof(double), typeof(SubstractNumberConverter), new PropertyMetadata(0.0));
DependencyProperty.Register(nameof(Value), typeof(double), typeof(SubtractNumberConverter), new PropertyMetadata(0.0));
}
}

0 comments on commit 690522f

Please sign in to comment.