Tags-Etiketler
Bu kısımda sitemizde etiketlenmiş makaleleri toplu olarak bulabilirsiniz...
[ paint ] /
Makaleler-Article(s)
paint ile ilgili toplam 1 makale bulundu ! (A total of 1 article(s) about paint was(were) found in all of articles!)
Article |
---|
Form Paint Örnek Bu örnekte form da paint metodunu göreceğiz.
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();
this.Text = "Paint Event";
this.Paint += new PaintEventHandler(MyPaintHandler);
}
static void MyPaintHandler(object objSender, PaintEventArgs pea)
{
Graphics grafik = pea.Graphics;
grafik.Clear(Color.LightGreen);
}
}
}
//Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN |
|
        Sitede yayınlanan makaleleri
Blog sitemizden de takip edebilirsiniz.
Sitemizdeki makaleleri RSS olarak takip edebilirsiniz.