链接到另一个文本框的 NumericUpDown 最大值

NumericUpDown maximum value linked to another textbox

是否有办法链接 numericUpDown 的最大值或取决于标记为 AB 的文本框的值?

例如标签为"AB"的文本框的值为10,它会自动将numericUpDown的最大值设置为10。

您只需为 Leave 事件添加一个事件处理程序,并在该事件中设置 NumericUpDown 的最大值 属性

Sub AB_Leave(sender As Object, e As EventArgs)

    Dim value As Decimal
    ' Safety check, the user can type anything in the textbox, 
    ' we accept only a decimal number
    If Decimal.TryParse(AB.Text, value) Then
        numericUpDown1.Maximum = value
    End If
End Sub