gpt4 book ai didi

c++ - 在托管 C++ 中创建带有自定义按钮文本的 MessageBox 的简单方法是什么?

转载 作者:太空狗 更新时间:2023-10-29 22:53:55 32 4
gpt4 key购买 nike

我希望将开销保持在最低限度。现在我有:

// Launch a Message Box with advice to the user
DialogResult result = MessageBox::Show("This may take awhile, do you wish to continue?", "Warning", MessageBoxButtons::YesNo, MessageBoxIcon::Exclamation);

// The test will only be launched if the user has selected Yes on the Message Box
if(result == DialogResult::Yes)
{
// Execute code
}

不幸的是,我的客户更喜欢“继续”和“取消”来代替默认的"is"和“否”按钮文本。似乎应该有一种简单的方法来做到这一点。

最佳答案

您可以使用“确定”和“取消”

MessageBoxButtons::YesNo 替换为 MessageBoxButtons::OKCancel

MessageBoxButtons Enum

除此之外,您将不得不创建一个新表单,因为我认为 Enum 无法扩展。

关于c++ - 在托管 C++ 中创建带有自定义按钮文本的 MessageBox 的简单方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/77293/

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