英文:
MessageBox User32.dll, how to add links (Go programming language)
问题
我发现了如何在Go语言中使用Stackoverflow的这个答案创建一个简单的MessageBox:
https://stackoverflow.com/a/71919136/14997578
这个方法使用了user32 Windows DLL来创建MessageBox。
问题是,现在我需要在MessageBox中添加一个可以点击的链接。我尝试将链接写成普通文本,但输出的结果也是普通文本。
有没有办法在user32.dll的MessageBox中添加链接呢?
英文:
I discovered how to create a simple MessageBox in Go using this Stackoverflow answer:
https://stackoverflow.com/a/71919136/14997578
This uses the user32 Windows DLL to create it.
The problem is that now I need to add a link to it, witch you can click, obviously.
I tried writing the link like normal text but it outputs normal text, too.
Is there a way I can add links to user32.dll MessageBox?
答案1
得分: 1
一个MessageBox只支持图标和纯文本。
使用任务对话框(ComCtl v6)和TDF_ENABLE_HYPERLINKS
标志。TaskDialogIndirect
是序数345。
英文:
A MessageBox only supports a icon and plain text.
Use a Task dialog (ComCtl v6) and the TDF_ENABLE_HYPERLINKS
flag. TaskDialogIndirect
is ordinal 345.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论