gpt4 book ai didi

C++/MFC 有没有办法在单击一个按钮的同时单击另一个按钮?

转载 作者:太空宇宙 更新时间:2023-11-03 10:41:30 25 4
gpt4 key购买 nike

我的项目中有 2 个按钮:

-按钮A

-按钮B

有没有一种方法可以让我按下按钮 A 并同时执行按钮 B 的点击。

最佳答案

从 ButtonA 点击回调显式调用 Button 的回调。

BOOL MyDialog::OnButton_A_Clicked(){  ...  OnButton_B_Clicked();}

As mentioned in this comment, calling a handler directly may cause subtle problems, I would propose the following solution from the same comment:

Send button click message to the button B.

BOOL MyDialog::OnButton_A_Clicked()
{
...
CWnd *pBtnB = GetDlgItem(IDC_BUTTONB);
ASSERT(pBtnB != NULL); // You can use MFC
pBtnB->SendMessage(BN_CLICKED);
}

关于C++/MFC 有没有办法在单击一个按钮的同时单击另一个按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35650880/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com