Skip to content

Commit d7b4041

Browse files
committed
normalized converters code
1 parent b7e08ae commit d7b4041

18 files changed

+18
-18
lines changed

src/Shared/HandyControlDemo_Shared/Tools/Converter/HatchBrushConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public object Convert(object value, Type targetType, object parameter, CultureIn
2727

2828
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
2929
{
30-
throw new NotImplementedException();
30+
throw new NotSupportedException();
3131
}
3232
}
3333
}

src/Shared/HandyControlDemo_Shared/Tools/Converter/String2BrushConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public object Convert(object value, Type targetType, object parameter, CultureIn
1515

1616
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
1717
{
18-
throw new NotImplementedException();
18+
throw new NotSupportedException();
1919
}
2020
}
2121
}

src/Shared/HandyControlDemo_Shared/Tools/Converter/StringRepeatConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public object Convert(object value, Type targetType, object parameter, CultureIn
3939

4040
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
4141
{
42-
throw new NotImplementedException();
42+
throw new NotSupportedException();
4343
}
4444
}
4545
}

src/Shared/HandyControl_Shared/Tools/Converter/Boolean2StrConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public object Convert(object value, Type targetType, object parameter, CultureIn
2626

2727
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
2828
{
29-
throw new NotImplementedException();
29+
throw new NotSupportedException();
3030
}
3131
}
3232
}

src/Shared/HandyControl_Shared/Tools/Converter/Boolean2VisibilityReConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public object Convert(object value, Type targetType, object parameter, CultureIn
1414

1515
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
1616
{
17-
throw new NotImplementedException();
17+
throw new NotSupportedException();
1818
}
1919
}
2020
}

src/Shared/HandyControl_Shared/Tools/Converter/BooleanArr2VisibilityConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public object Convert(object[] values, Type targetType, object parameter, Cultur
3333

3434
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
3535
{
36-
throw new NotImplementedException();
36+
throw new NotSupportedException();
3737
}
3838
}
3939
}

src/Shared/HandyControl_Shared/Tools/Converter/CornerRadiusSplitConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public object Convert(object value, Type targetType, object parameter, CultureIn
2828

2929
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
3030
{
31-
throw new NotImplementedException();
31+
throw new NotSupportedException();
3232
}
3333
}
3434
}

src/Shared/HandyControl_Shared/Tools/Converter/Double2GridLengthConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public object Convert(object value, Type targetType, object parameter, CultureIn
2323

2424
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
2525
{
26-
throw new NotImplementedException();
26+
throw new NotSupportedException();
2727
}
2828
}
2929
}

src/Shared/HandyControl_Shared/Tools/Converter/DoubleMinConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public object Convert(object value, Type targetType, object parameter, CultureIn
2525

2626
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
2727
{
28-
throw new NotImplementedException();
28+
throw new NotSupportedException();
2929
}
3030
}
3131
}

src/Shared/HandyControl_Shared/Tools/Converter/Int2StrConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public object Convert(object value, Type targetType, object parameter, CultureIn
3232

3333
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
3434
{
35-
throw new NotImplementedException();
35+
throw new NotSupportedException();
3636
}
3737
}
3838
}

0 commit comments

Comments
 (0)