C# DLL 消息框

发布于 2024-11-17 11:13:27 字数 156 浏览 1 评论 0原文

是否可以让 C# DLL 打开消息框?就像在 WinForm 中一样:

MessageBox.Show("Message");

我认识到 DLL 不能直接执行,但是如果将其注入要运行的进程中,那么它可以显示消息框(如果可能的话)。

Is it possible to have a C# DLL open a message box? Like in a WinForm:

MessageBox.Show("Message");

I relise that DLL's can't be executed directly but what if it were to be injected into a process to be run, then it could show the message box (if it's possible).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诺曦 2024-11-24 11:13:27

步骤1:点击添加参考。在 .NET 下,选择 System.Windows.Forms 并单击“确定”!

步骤2:使用命名空间using System.Windows.Forms;

Step1: Click on Add Reference. Under .NET, Select System.Windows.Forms and click ok!

Step2: use namespace using System.Windows.Forms;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文