using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp36
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Graphics formgraphics = this.CreateGraphics();
string drawString = "Örnek yazi";
Font drawFont = new Font("Comic Sans MS", 20);
SolidBrush drawBrush = new SolidBrush(Color.Black);
formgraphics.DrawString(drawString, drawFont, drawBrush, 50, 30);
drawFont.Dispose();
drawBrush.Dispose();
formgraphics.Dispose();
}
}
}
Hiç yorum yok:
Yorum Gönder