1 Star 0 Fork 1.2K

gisinaction/project_8049763

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
MessageBoxHelper.cs 623 Bytes
一键复制 编辑 原始数据 按行查看 历史
koko 提交于 2020-02-12 12:52 +08:00 . 中间服务重构(未完成),系统优化
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace SiMay.RemoteMonitor
{
public class MessageBoxHelper
{
public static void ShowBoxExclamation(string tip, string title = "提示")
=> ShowBox(tip, title, MessageBoxIcon.Exclamation);
public static void ShowBoxError(string tip, string title = "提示")
=> ShowBox(tip, title, MessageBoxIcon.Error);
public static void ShowBox(string tip, string title, MessageBoxIcon boxIcon)
=> MessageBox.Show(tip, title, 0, boxIcon);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/springjava/SiMayRemoteMonitorOS.git
git@gitee.com:springjava/SiMayRemoteMonitorOS.git
springjava
SiMayRemoteMonitorOS
project_8049763
master

搜索帮助