CMFCDesktopAlertWndButton Class

Allows buttons to be added to a desktop alert dialog box.

class CMFCDesktopAlertWndButton : public CMFCButton

Members

Public Constructors

Name

Description

CMFCDesktopAlertWndButton::CMFCDesktopAlertWndButton

Default constructor.

CMFCDesktopAlertWndButton::~CMFCDesktopAlertWndButton

Destructor.

Public Methods

Name

Description

CMFCDesktopAlertWndButton::IsCaptionButton

Determines whether the button is displayed in the caption area of the alert dialog box.

CMFCDesktopAlertWndButton::IsCloseButton

Determines whether the button closes the alert dialog box.

Data Members

Name

Description

CMFCDesktopAlertWndButton::m_bIsCaptionButton

A Boolean value that specifies whether the button is displayed in the caption area of the alert dialog box.

CMFCDesktopAlertWndButton::m_bIsCloseButton

A Boolean value that specifies whether the button closes the alert dialog box.

Remarks

By default, the constructor sets the m_bIsCaptionButton and m_bIsCloseButton data members to FALSE. The parent CMFCDesktopAlertDialog object sets m_bIsCaptionButton to TRUE if the button is positioned in the caption area of the alert dialog box. The CMFCDesktopAlertDialog class creates a CMFCDesktopAlertWndButton object that serves as the button that closes the alert dialog box and sets m_bIsCloseButton to TRUE.

Add CMFCDesktopAlertWndButton objects to a CMFCDesktopAlertDialog object as you would add any button. For more information about CMFCDesktopAlertDialog, see CMFCDesktopAlertDialog Class.

Example

The following example demonstrates how to use the SetImage method in the CMFCDesktopAlertWndButton class. This code snippet is part of the Desktop Alert Demo sample.

    CMFCDesktopAlertWndButton   m_btnFlag;


...


    m_btnFlag.SetImage (IDB_FLAG);

Inheritance Hierarchy

CObject

   CCmdTarget

      CWnd

         CButton

            CMFCButton

               CMFCDesktopAlertWndButton

Requirements

Header: afxdesktopalertwnd.h

See Also

Reference

Hierarchy Chart

CMFCDesktopAlertDialog Class

Other Resources

MFC Classes