Grafik Uygulaması Örnek
Bu örnekte Windows System Iconlarını graphics metodu ile C:\ dizinine icon.bmp olarak kaydedeceğiz.
Formunuza 1 adet button ve pictureBox ekleyin.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Graphics grafik;
Bitmap bit = new Bitmap(50, 50);
grafik = Graphics.FromImage(bit);
grafik.DrawIconUnstretched(SystemIcons.Error, new Rectangle(10, 10, SystemIcons.WinLogo.Width, SystemIcons.WinLogo.Height));
pictureBox1.Image = bit;
bit.Save("C:\\icon.bmp");
}
}
}
//Bir sonraki makalede görüşmek üzere. Bahadır