C# DLL 消息框
是否可以让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
步骤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;