カラーダイアログで現在選択されている色を表示する小さな正方形が必要です。
次のようになります。
緑色のボックスは、選択すると別の色に更新されます。どうすればこれを行うことができますか?
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
イベント ハンドラーに配置します。