|
Class Display Device Contexts
By using a class DC, an application can use a single display DC for every window belonging to a
given class. Class DCs are often used with control windows that are drawn using
the same attribute values. Like private DCs, class DCs minimize the time
required to prepare a DC for drawing.
Windows supplies a class DC for a window if it belongs to a window class
having the CS_CLASSDC style. Windows creates the DC when creating the first window
belonging to the class and then uses the same DC for all subsequently created
windows in the class. Initially, the class DC has the same default values for
attributes as a common DC, but the application can modify these at any time.
Windows preserves all changes, except for the clipping region and device origin,
until the last window in the class has been destroyed. A change made for one
window applies to all windows in that class.
An application can retrieve the handle for the class DC by using the GetDC function any time after the first window has been created. The application
can keep and use the handle without releasing it because the class DC is not part
of the display DC cache. If the application creates another window in the same
window class, the application must retrieve the class DC again. Retrieving the
DC sets the correct device origin and clipping region for the new window.
After the application retrieves the class DC for a new window in the class, the DC
can no longer be used to draw in the original window without again retrieving
it for that window. In general, each time it must draw in a window, an
application must explicitly retrieve the class DC for the window.
Applications that use class DCs should always call BeginPaint when processing a WM_PAINT message. The function sets the correct device origin and clipping region for
the window, and incorporates the update region. The application should also
call EndPaint to restore the caret if BeginPaint hid it. EndPaint has no other effect on a class DC.
Windows passes the class DC when sending the WM_ERASEBKGND message to the application, permitting the current attribute values to affect
any drawing carried out by the application or Windows when processing this
message. Windows supplies a window DC with the WM_ICONERASEBKGND message regardless of whether the corresponding window has a class DC. As it
could with a window having a private DC, an application can use GetDCEx to force Windows to return a common DC for the window that has a class DC.
Using class DCs is not recommended.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|