CTaskDialog::SetProgressBarMarquee

配置 CTaskDialog 的一个marquee栏并将其添加到对话框。

void SetProgressBarMarquee(
   BOOL bEnabled = TRUE,
   int nMarqueeSpeed = 0
);

参数

  • [in] bEnabled
    启用marquee栏的TRUE ;禁用marquee栏和移除它的 FALSE 从 CTaskDialog

  • [in] nMarqueeSpeed
    指示marquee条速度的整数。

备注

marquee栏位于 CTaskDialog类选件的主要文本下方。

使用 nMarqueeSpeed 设置marquee栏的速度;最大值指示较慢速。值为0 nMarqueeSpeed 进行marquee禁止以响应 Windows Vista的默认速度。

如果 nMarqueeSpeed 小于0,则此方法引发与 确保(MFC) 宏的异常。

示例

// TODO: Replace the strings below with the appropriate message, 
// main instruction, and dialog title
CString message("This is an important message to the user.");
CString mainInstruction("Important!\nPlease read!");
CString title("Alert Dialog");

CTaskDialog taskDialog(message, mainInstruction, title, 
    TDCBF_YES_BUTTON | TDCBF_NO_BUTTON | TDCBF_CANCEL_BUTTON );

// Add a marquee progress bar.
taskDialog.SetProgressBarMarquee();

taskDialog.DoModal();

// Remove the marquee bar and replace it with a standard progress bar
taskDialog.SetProgressBarMarquee(0);
taskDialog.SetProgressBarRange(0, 100);
taskDialog.SetProgressBarPosition(75);
taskDialog.SetProgressBarState();

taskDialog.DoModal();

要求

标头: afxtaskdialog.h

请参见

参考

CTaskDialog类选件

层次结构图

CTaskDialog::SetProgressBarPosition

CTaskDialog::SetProgressBarRange

CTaskDialog::SetProgressBarState