CStatic Class
Provides the functionality of a Windows static control.
class CStatic : public CWnd
Members
Public Constructors
Name |
Description |
---|---|
Constructs a CStatic object. |
Public Methods
Name |
Description |
---|---|
Creates the Windows static control and attaches it to the CStatic object. |
|
Override to draw an owner-drawn static control. |
|
Retrieves the handle of the bitmap previously set with SetBitmap. |
|
Retrieves the handle of the cursor image previously set with SetCursor. |
|
Retrieves the handle of the enhanced metafile previously set with SetEnhMetaFile. |
|
Retrieves the handle of the icon previously set with SetIcon. |
|
Specifies a bitmap to be displayed in the static control. |
|
Specifies a cursor image to be displayed in the static control. |
|
Specifies an enhanced metafile to be displayed in the static control. |
|
Specifies an icon to be displayed in the static control. |
Remarks
A static control displays a text string, box, rectangle, icon, cursor, bitmap, or enhanced metafile. It can be used to label, box, or separate other controls. A static control normally takes no input and provides no output; however, it can notify its parent of mouse clicks if it's created with SS_NOTIFY style.
Create a static control in two steps. First, call the constructor to construct the CStatic object, then call the Create member function to create the static control and attach it to the CStatic object.
If you create a CStatic object within a dialog box (through a dialog resource), the CStatic object is automatically destroyed when the user closes the dialog box.
If you create a CStatic object within a window, you may also need to destroy it. A CStatic object created on the stack within a window is automatically destroyed. If you create the CStatic object on the heap by using the new function, you must call delete on the object to destroy it when you are done with it.
Inheritance Hierarchy
CStatic
Requirements
Header: afxwin.h