Kod:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace C_Sharp_Save_Panel_As_Image
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private **** btnSaveBmp_Click(object sender, EventArgs e)
{
//panelin boyutlarını kullanarak bitmap sınıfından bir örnek oluşturalım
Bitmap bmp = new Bitmap(this.panel1.Width, this.panel1.Height);
//paneli bitmap sınıfından aldığımız örneğe çizdirelim.
this.panel1.DrawToBitmap(bmp, new Rectangle(0, 0, this.panel1.Width, this.panel1.Height));
//bu bitmap i jpeg formatında uygulama exe sinin bulunduğu klasöre kaydedelim.
bmp.Save("panel.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
}
}
}