CMFCDesktopAlertWndButton 類別
允許將按鈕新增至桌面警示對話框。
語法
class CMFCDesktopAlertWndButton : public CMFCButton
成員
公用建構函式
名稱 | 描述 |
---|---|
CMFCDesktopAlertWndButton::CMFCDesktopAlertWndButton |
預設建構函式。 |
CMFCDesktopAlertWndButton::~CMFCDesktopAlertWndButton |
解構函式。 |
公用方法
名稱 | 描述 |
---|---|
CMFCDesktopAlertWndButton::IsCaptionButton | 判斷按鈕是否顯示在警示對話框的標題區域中。 |
CMFCDesktopAlertWndButton::IsCloseButton | 判斷按鈕是否關閉警示對話框。 |
資料成員
名稱 | 描述 |
---|---|
CMFCDesktopAlertWndButton::m_bIsCaptionButton |
布爾值,指定按鈕是否顯示在警示對話框的標題區域中。 |
CMFCDesktopAlertWndButton::m_bIsCloseButton |
布爾值,指定按鈕是否關閉警示對話方塊。 |
備註
根據預設,建構函式會將 m_bIsCaptionButton
和 m_bIsCloseButton
數據成員設定為 FALSE。 如果按鈕位於警示對話框的標題區域中,父 CMFCDesktopAlertDialog
物件會設定 m_bIsCaptionButton
為TRUE。 類別 CMFCDesktopAlertDialog
會 CMFCDesktopAlertWndButton
建立 物件,做為關閉警示對話框並設定 m_bIsCloseButton
為 TRUE 的按鈕。
將物件新增 CMFCDesktopAlertWndButton
至 CMFCDesktopAlertDialog
物件,就像新增任何按鈕一樣。 如需 的詳細資訊 CMFCDesktopAlertDialog
,請參閱 CMFCDesktopAlertDialog 類別。
範例
下列範例示範如何在 類別中使用 SetImage
CMFCDesktopAlertWndButton
方法。 此代碼段是桌面警示示範範例的一部分。
CMFCDesktopAlertWndButton m_btnFlag;
m_btnFlag.SetImage(IDB_FLAG);
繼承階層架構
需求
標頭: afxdesktopalertwnd.h
CMFCDesktopAlertWndButton::IsCaptionButton
判斷按鈕是否顯示在警示對話框的標題區域中。
BOOL IsCaptionButton() const;
傳回值
如果按鈕顯示在警示對話框的標題區域中,則為非零;否則為 0。
CMFCDesktopAlertWndButton::IsCloseButton
判斷按鈕是否關閉警示對話框。
BOOL IsCloseButton() const;
傳回值
如果按鈕關閉警示對話框,則為非零;否則為 0。