未分類

C# コントロールのスクリーンショットを取得する (2)

準備

(なし)

デザイン

1. フォーム (Form1) にボタン (button1) を配置します。

サンプルコード (C#)

// 名前空間の追加
using System.Drawing.Imaging;

// コード
private void button1_Click(object sender, EventArgs e)
{
  Bitmap bmp = new Bitmap(button1.Width, button1.Height);
  button1.DrawToBitmap(bmp, new Rectangle(0, 0, bmp.Width, bmp.Height));
  bmp.Save(@"D:\test.png", ImageFormat.Png);
  
}

解説

ボタンのスクリーンショットを取得して、ファイルに保存しています。

結果

動作確認環境

Visual Studio 2015 Professional (C# 6.0)

-未分類