準備
(なし)
デザイン
1. フォーム (Form1) にボタン (button1) を配置します。
2. フォーム (Form1) にボタン (button2) を配置します。
3. フォーム (Form1) にピクチャーボックス (pictureBox1) を配置します。
サンプルコード (C#)
// 名前空間の追加 // (なし) // コード private void button1_Click(object sender, EventArgs e) { pictureBox1.ImageLocation = "http://twitter-badges.s3.amazonaws.com/ja_follow_me-a.png"; } private void button2_Click(object sender, EventArgs e) { pictureBox1.Image.Save(@"D:\test.png"); }
解説
画像イメージをダウンロードしています。button1 をクリックしてもすぐには、画像は表示されないようです。若干の時間が必要です。そのため、保存処理は別のイベントで行っています。
動作確認環境
Visual Studio 2015 Professional (C# 6.0)