tangxu
2024-10-22 4d9fe5ed98ceb6b8fe9dc52ebfb80860ad1aee99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
using System.Windows.Forms;
 
namespace DPumpHydr.WinFrmUI.WenSkin
{
    public static class MsgBoxShow
    {
        #region 消息提示框
        /// <summary>
        /// 消息
        /// </summary>
        /// <param name="text"></param>
        /// <returns></returns>
        public static bool MsgBoxInformation(string text)
        {
            //var m = MessageBox.Show(text, "提醒", MessageBoxButtons.OK, MessageBoxIcon.Information);
            var m = new MsgBox(text, MsgBox.MsgBoxIcon.Info).ShowDialog();
            if (m == DialogResult.OK)
                return true;
            else
                return false;
        }
        /// <summary>
        /// 提醒
        /// </summary>
        /// <param name="text"></param>
        /// <returns></returns>
        public static bool MsgBoxAsterisk(string text)
        {
            //var m = MessageBox.Show(text, "提醒", MessageBoxButtons.OKCancel, MessageBoxIcon.Asterisk);
            var m = new MsgBox(text, MsgBox.MsgBoxIcon.Asterisk).ShowDialog();
            if (m == DialogResult.OK)
                return true;
            else
                return false;
        }
        /// <summary>
        /// 警告
        /// </summary>
        /// <param name="text"></param>
        /// <returns></returns>
        public static bool MsgBoxWarning(string text)
        {
            //var m = MessageBox.Show(text, "警告", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning);
            var m = new MsgBox(text, MsgBox.MsgBoxIcon.Warning).ShowDialog();
            if (m == DialogResult.OK)
                return true;
            else
                return false;
        }
        /// <summary>
        /// 错误
        /// </summary>
        /// <param name="text"></param>
        /// <returns></returns>
        public static bool MsgBoxError(string text)
        {
            //var m = MessageBox.Show(text, "错误", MessageBoxButtons.OKCancel, MessageBoxIcon.Error);
            var m = new MsgBox(text, MsgBox.MsgBoxIcon.Error).ShowDialog();
            if (m == DialogResult.OK)
                return true;
            else
                return false;
        }
        #endregion
 
        #region 弹出式输入框
 
        public static string MsgBoxInputBox(string text, bool readOnly = false)
        {
            var m = new PopupInputBoxForm(text, readOnly);
            if (m.ShowDialog() == DialogResult.OK)
                return m.Message;
            else
                return text;
        }
 
        #endregion
    }
}