vb.net创建一个正方形以显示由颜色对话框选择的颜色

时间:2013-04-21 17:42:19

标签: vb.net colordialog

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

它应如下所示:Picture of what I want

绿色框在选择时会更新为另一种颜色。 我该怎么做呢?

1 个答案:

答案 0 :(得分: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事件处理程序中。