Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than gdi32, prefix the name with the module name and a period.
<DllImport("gdi32.dll", SetLastError:=True, CharSet:=CharSet.Ansi)> _
public Function CreateDC(<MarshalAs(UnmanagedType.LPStr)>lpszDriver As String, _
<MarshalAs(UnmanagedType.LPStr)>lpszDevice As String, _
<MarshalAs(UnmanagedType.LPStr)>lpszOutput As String, _
lpInitData As IntPtr) As IntPtr
End Function
VB Signature:
Declare Function CreateDC Lib "gdi32.dll" ( _
lpszDriver As String, lpszDevice As String, _
lpszOutput As String, lpInitData As IntPtr) As IntPtr
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
hdc = CreateDC("DISPLAY", null, null, IntPtr.Zero); // create a new dc,yeni bir dc yaratıyoruz.Yeni bir system dc si yaratıyoruz.
}
[DllImport("gdi32.dll", EntryPoint = "CreateDC", CharSet = CharSet.Auto, SetLastError = true)]
private static extern IntPtr CreateDC(string lpszDriver, string lpszDeviceName, string lpszOutput, IntPtr devMode);
[DllImport("gdi32.dll")]
static extern uint SetPixel(IntPtr hdc, int X, int Y, uint crColor); // Bu fonksiyon verdiğimiz dc ye sahip grafiklere piksel girer.
IntPtr hdc;
private void timer1_Tick(object sender, EventArgs e)
{
for (int x = 0; x < 1000; x += 5)
{
for (int y = 0; y < 1000; y += 5)
{
SetPixel(hdc, x, y, (uint)Color.Black.ToArgb());
}
}
}
}
}
Alternative Managed API:
Do you know one? Please contribute it!
The SetPixel API
3/16/2007 7:46:19 AM - -193.84.128.48
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).