feat: 폼에 오차 범위 UI 표시 추가

This commit is contained in:
kje97 2025-06-11 12:01:05 +09:00
parent d8ac2b984b
commit 05e1a08735
2 changed files with 1758 additions and 1709 deletions

File diff suppressed because it is too large Load Diff

View File

@ -165,6 +165,9 @@ Public Class weightForm
weightErrorPlus = weightSum * errorRate weightErrorPlus = weightSum * errorRate
weightErrorMinus = weightSum * errorRate weightErrorMinus = weightSum * errorRate
' 폼에 오차 범위 표시
lbError.Text = "(오차: +" & weightErrorPlus.ToString() & ", -" & weightErrorMinus.ToString() & ")"
End If End If
End Sub End Sub