@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: The PaintDesktop API !!!!C# Signature: [DllImport("user32.dll")] static extern bool PaintDesktop(IntPtr hdc); !!!!User-Defined Types: None. !!!!Notes: Draws the desktop background to the provided device context. !!!!Tips & Tricks: Please add some! !!!!Sample Code: private void Paint(object sender, PaintEventArgs e) { IntPtr HDC = e.Graphics.GetHdc(); //Get the device context PaintDesktop(HDC); //Paint the form with the desktop background e.Graphics.ReleaseHdc(HDC); //Release the device context } !!!!Alternative Managed API: Omnicoder's Managed Windows API: http://www.fileden.com/files/2008/4/5/1852663/ManWinAPI.zip Documentation: PaintDesktop@msdn on MSDN
Edit user32.PaintDesktop
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.