コンソール アプリケーションでピクチャボックスをエミュレートする方法はありますか? 私はこの方法を試しましたが、画像は常に完全に黒くなりました:
Using P As New PictureBox
P.Size = New Point(255, 255)
P.Image = New Bitmap(255, 255) 'I did set a real image, but I didn't for the sake this example
End Using