無効にしたときにボタンの色が灰色に変わらないようにしたい。背景色に画像を使用しておりForeColor
、白に設定しています。ボタンが無効になっているときは、グレーに変更せずにそのままにしておきたいです。私のコードは次のとおりです。
Private Sub btnItemNonTaxable_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnItemNonTaxable.Click
If Shift = 0 Then
MessageBox2("Please Begin the Shift before you start the transaction.", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
Exit Sub
End If
txtNonInventoryQuantity.Text = "1"
pnlOpenItem.Visible = True
LabelNonInventory.Text = "Non-Inventory Non-Taxable"
isOpenItem = True
chkTax1.Visible = False
chkTax1.Checked = False
txtPrice.Focus()
btnCashDrop.Enabled = False
If Not btnCashDrop.Enabled Then
btnCashDrop.Image = My.Resources.small_green
btnCash.ForeColor = Color.White
End If