将焦点设置到 TPrintDialog 中的“确定”按钮

Set focus to the OK button in the TPrintDialog

打开TPrintDialog时是否可以将焦点设置到TPrintDialog中的确定按钮?

TPrintDialog::OnShow事件中,您可以像这样手动将焦点设置到确定按钮:

void __fastcall TMyForm::PrintDialogShow(TObject *Sender)
{
    HWND btnOK = GetDlgItem(PrintDialog->Handle, IDOK);
    ::SetFocus(btnOK);
}