MsgBox.cs 665 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Forms;
  7. using System.Reflection;
  8. namespace ZLPlugin_LisPacs_MR.Domain.Extention
  9. {
  10. public static class MsgBox
  11. {
  12. internal static void ShowZlsoftBox(string content, MessageBoxIcon msgIcon = MessageBoxIcon.Information, MessageBoxButtons msgButton = MessageBoxButtons.OK, MessageBoxDefaultButton defaultButton = MessageBoxDefaultButton.Button1)
  13. {
  14. MessageBox.Show(content, "中联子插件-" + Assembly.GetExecutingAssembly().GetName().Name, msgButton, msgIcon, defaultButton);
  15. }
  16. }
  17. }