私のプロジェクトでは、ユーザー間のソケットを使用して通信しており、ピクチャーボックスを相互に送信する必要があります。
これが私がpictureboxを使用する方法です:
PictureBox pictureBox1 = new PictureBox();
ScreenCapture sc = new ScreenCapture();
// capture entire screen, and save it to a file
Image img = sc.CaptureScreen();
// display image in a Picture control named pictureBox1
pictureBox1.Image = img;
そして、私は自分のソケットを使って次のように送信します:
byte[] buffer = Encoding.ASCII.GetBytes(textBox1.Text);
s.Send(buffer);
しかし、pictureBox1を送信する方法がわかりませんでした。よろしくお願いします。よろしくお願いします。