gpt4 book ai didi

c# - 如何在类库 C# 中使用 Messagebox?

转载 作者:太空狗 更新时间:2023-10-30 00:15:19 26 4
gpt4 key购买 nike

如何在类库中使用MessageBox?

这是我的代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace MessageBoxes
{
class ShowInfo
{
MessageBox.Show("test");
}
}

我可以加载 MessageBox 但不能有 show 属性,MessageBox.Show("test"); <-- 失败

最佳答案

您应该类库中使用Windows 窗体MessageBox。如果您在 ASP.NET 应用程序中使用此库会怎样? MessageBox 将显示在 Web 服务器中。并且您的网络服务器将等待(挂起),直到有人响应网络服务器中的 MessageBox。

理想的设计是您要么将消息作为字符串返回并以调用者特定的方式处理该字符串,要么抛出异常(如果这是您想要的)。

如果您仍然想要,那么这里是您的代码更正

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace MessageBoxes
{
class ShowInfo
{
public void ShowMessage(string msg)
{
MessageBox.Show(msg);
}
}
}

关于c# - 如何在类库 C# 中使用 Messagebox?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15848787/

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