Skip to content

Commit 2b506f5

Browse files
committed
正常显示
1 parent d5e0c53 commit 2b506f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NumericUpDownLib.WinUI/Converters/ByteToPlaceHolderStringConverter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public object Convert(object value, Type targetType, object parameter, string la
2828
else
2929
return null;
3030
string retString = string.Empty;
31-
for (int i = 0; i < byteVal + 2; i++)
31+
for (int i = 0; i < byteVal; i++)
3232
retString += " ";
3333
return retString;
3434
}

0 commit comments

Comments
 (0)