yangyin
2025-03-27 b0de14c2670b9ff0079dacfb4b7457b438368f11
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#region Imports
 
using DPumpHydr.WinFrmUI.RLT.Controls;
using DPumpHydr.WinFrmUI.RLT.Enum.Crown;
using DPumpHydr.WinFrmUI.RLT.Forms;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
 
#endregion
 
namespace DPumpHydr.WinFrmUI.RLT.Child.Crown
{
    #region CrownDialogChild
 
    public partial class CrownDialog : CrownForm
    {
        #region Field Region
 
        private DialogButton _dialogButtons = DialogButton.Ok;
        private readonly List<CrownButton> _buttons;
 
        #endregion
 
        #region Button Region
 
        protected CrownButton btnOk;
        protected CrownButton btnCancel;
        protected CrownButton btnClose;
        protected CrownButton btnYes;
        protected CrownButton btnNo;
        protected CrownButton btnAbort;
        protected CrownButton btnRetry;
        protected CrownButton btnIgnore;
 
        #endregion
 
        #region Property Region
 
        [Description("Determines the type of the dialog window.")]
        [DefaultValue(DialogButton.Ok)]
        public DialogButton DialogButtons
        {
            get => _dialogButtons;
            set
            {
                if (_dialogButtons == value)
                {
                    return;
                }
 
                _dialogButtons = value;
                SetButtons();
            }
        }
 
        [Browsable(false)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public int TotalButtonSize { get; private set; }
 
        [Browsable(false)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public new IButtonControl AcceptButton
        {
            get => base.AcceptButton;
            private set => base.AcceptButton = value;
        }
 
        [Browsable(false)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public new IButtonControl CancelButton
        {
            get => base.CancelButton;
            private set => base.CancelButton = value;
        }
 
        #endregion
 
        #region Constructor Region
 
        public CrownDialog()
        {
            InitializeComponent();
 
            _buttons = new List<CrownButton>
            {
                btnAbort, btnRetry, btnIgnore, btnOk,
                btnCancel, btnClose, btnYes, btnNo
            };
        }
 
        #endregion
 
        #region Event Handler Region
 
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);
 
            SetButtons();
        }
 
        #endregion
 
        #region Method Region
 
        private void SetButtons()
        {
            foreach (CrownButton btn in _buttons)
            {
                btn.Visible = false;
            }
 
            switch (_dialogButtons)
            {
                case DialogButton.Ok:
                    ShowButton(btnOk, true);
                    AcceptButton = btnOk;
                    break;
                case DialogButton.Close:
                    ShowButton(btnClose, true);
                    AcceptButton = btnClose;
                    CancelButton = btnClose;
                    break;
                case DialogButton.OkCancel:
                    ShowButton(btnOk);
                    ShowButton(btnCancel, true);
                    AcceptButton = btnOk;
                    CancelButton = btnCancel;
                    break;
                case DialogButton.AbortRetryIgnore:
                    ShowButton(btnAbort);
                    ShowButton(btnRetry);
                    ShowButton(btnIgnore, true);
                    AcceptButton = btnAbort;
                    CancelButton = btnIgnore;
                    break;
                case DialogButton.RetryCancel:
                    ShowButton(btnRetry);
                    ShowButton(btnCancel, true);
                    AcceptButton = btnRetry;
                    CancelButton = btnCancel;
                    break;
                case DialogButton.YesNo:
                    ShowButton(btnYes);
                    ShowButton(btnNo, true);
                    AcceptButton = btnYes;
                    CancelButton = btnNo;
                    break;
                case DialogButton.YesNoCancel:
                    ShowButton(btnYes);
                    ShowButton(btnNo);
                    ShowButton(btnCancel, true);
                    AcceptButton = btnYes;
                    CancelButton = btnCancel;
                    break;
            }
 
            SetFlowSize();
        }
 
        private static void ShowButton(CrownButton button, bool isLast = false)
        {
            button.SendToBack();
 
            if (!isLast)
            {
                button.Margin = new Padding(0, 0, 10, 0);
            }
 
            button.Visible = true;
        }
 
        private void SetFlowSize()
        {
            int width = flowInner.Padding.Horizontal;
 
            foreach (CrownButton btn in _buttons)
            {
                if (btn.Visible)
                {
                    width += btn.Width + btn.Margin.Right;
                }
            }
 
            flowInner.Width = width;
            TotalButtonSize = width;
        }
 
        #endregion
    }
 
    #endregion
}