回答編集履歴
1
NumericTextBox の Property Val の Set を修正しました。
answer
CHANGED
@@ -13,7 +13,8 @@
|
|
13
13
|
End If
|
14
14
|
End Get
|
15
15
|
Set(value As Double)
|
16
|
-
Me.Text =
|
16
|
+
Me.Text = Value.ToString()
|
17
|
+
_val = Value
|
17
18
|
End Set
|
18
19
|
End Property
|
19
20
|
|