1

我想要一个小方块来显示颜色对话框当前选择的颜色。

它应该是这样的: 我想要的图片

而绿色框,当他们选择一个时,应该更新为另一种颜色。我该怎么做呢?

4

1 回答 1

1
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事件处理程序中。

于 2013-04-21T17:45:20.593 回答