1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- using System.Reflection;
- namespace ZLPlugin_LisPacs_MR.Domain.Extention
- {
- public static class MsgBox
- {
- internal static void ShowZlsoftBox(string content, MessageBoxIcon msgIcon = MessageBoxIcon.Information, MessageBoxButtons msgButton = MessageBoxButtons.OK, MessageBoxDefaultButton defaultButton = MessageBoxDefaultButton.Button1)
- {
- MessageBox.Show(content, "中联子插件-" + Assembly.GetExecutingAssembly().GetName().Name, msgButton, msgIcon, defaultButton);
- }
- }
- }
|