我想要一个小方块来显示颜色对话框当前选择的颜色。
它应该是这样的: 我想要的图片
而绿色框,当他们选择一个时,应该更新为另一种颜色。我该怎么做呢?
Using colorDialog As New ColorDialog
'If the user actually selected a color Then
If colorDialog.ShowDialog() = DialogResult.OK Then
'Set the background color of the picture box = color selected from the color dialog
PictureBox1.BackColor = colorDialog.Color
End If
End Using
将此代码放在您的Button_Click
事件处理程序中。