我对 vb.net 编码比较陌生。
我正在寻找编写一个代码,该代码将根据某些标准修改标签(计算结果输出)颜色。我有一个带有 2 个选项的下拉菜单,灰尘和金属。
颜色没有改变,我不知道为什么。
这是代码;
Dim concentrationcheck As String = Form8.materialType.SelectedIndex
Select Case concentrationcheck
Case "Dust"
If Val(concentrationValue.Text) < 4 Then
concentrationValue.BackColor = Color.Red
MsgBox("Add more suppressant or contact factory")
Else
concentrationValue.BackColor = Color.Green
End If
Case "Metal"
If Val(concentrationValue.Text) < 20 Then
concentrationValue.BackColor = Color.Red
MsgBox("Add more suppressant, or contact factory")
Else
concentrationValue.BackColor = Color.Green
End If
End Select