tangxu
2024-10-22 7a0d1efa4784d176a32f182ecae671711e98ca92
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
#region Imports
 
using DPumpHydr.WinFrmUI.RLT.Controls;
using System;
using System.ComponentModel;
using System.Windows.Forms;
 
#endregion
 
namespace DPumpHydr.WinFrmUI.RLT.Helper
{
    #region MaterialHelper
 
    public class PoisonDataGridHelper
    {
        private readonly PoisonScrollBar _scrollbar;
 
        private readonly DataGridView _grid;
 
        private int _ignoreScrollbarChange = 0;
 
        private readonly bool _ishorizontal = false;
        private readonly HScrollBar hScrollbar = null;
        private readonly VScrollBar vScrollbar = null;
 
        public PoisonDataGridHelper(PoisonScrollBar scrollbar, DataGridView grid) : this(scrollbar, grid, true)
        { }
 
        public PoisonDataGridHelper(PoisonScrollBar scrollbar, DataGridView grid, bool vertical)
        {
            _scrollbar = scrollbar;
            _scrollbar.UseBarColor = true;
            _grid = grid;
            _ishorizontal = !vertical;
 
            foreach (object item in _grid.Controls)
            {
                if (item.GetType() == typeof(VScrollBar))
                {
                    vScrollbar = (VScrollBar)item;
                }
 
                if (item.GetType() == typeof(HScrollBar))
                {
                    hScrollbar = (HScrollBar)item;
                }
            }
 
            _grid.RowsAdded += new DataGridViewRowsAddedEventHandler(_grid_RowsAdded);
            _grid.UserDeletedRow += new DataGridViewRowEventHandler(_grid_UserDeletedRow);
            _grid.Scroll += new ScrollEventHandler(_grid_Scroll);
            _grid.Resize += new EventHandler(_grid_Resize);
            _scrollbar.Scroll += _scrollbar_Scroll;
            _scrollbar.ScrollbarSize = 21;
 
            UpdateScrollbar();
        }
 
        private void _grid_Scroll(object sender, ScrollEventArgs e)
        {
            UpdateScrollbar();
        }
 
        private void _grid_UserDeletedRow(object sender, DataGridViewRowEventArgs e)
        {
            UpdateScrollbar();
        }
 
        private void _grid_RowsAdded(object sender, DataGridViewRowsAddedEventArgs e)
        {
            UpdateScrollbar();
        }
 
        private void _scrollbar_Scroll(object sender, ScrollEventArgs e)
        {
            if (_ignoreScrollbarChange > 0)
            {
                return;
            }
 
            if (_ishorizontal)
            {
                try
                {
                    hScrollbar.Value = _scrollbar.Value;
                    _grid.HorizontalScrollingOffset = _scrollbar.Value;
                }
                catch { }
            }
            else
            {
 
                try
                {
                    int firstDisplayedRowIndex = 0;
 
                    if (_scrollbar.Value >= 0 && _scrollbar.Value < _grid.Rows.Count)
                    {
                        firstDisplayedRowIndex = _scrollbar.Value + (_scrollbar.Value == 1 ? -1 : 1) >= _grid.Rows.Count ? _grid.Rows.Count - 1 : _scrollbar.Value + (_scrollbar.Value == 1 ? -1 : 1);
                    }
                    else
                    {
                        firstDisplayedRowIndex = _scrollbar.Value - 1;
                    }
 
                    while (!_grid.Rows[firstDisplayedRowIndex].Visible)
                    {
                        if (firstDisplayedRowIndex < 1)
                        {
                            firstDisplayedRowIndex = 0;
                        }
                        else
                        {
                            firstDisplayedRowIndex -= 1;
                        }
                    }
 
                    _grid.FirstDisplayedScrollingRowIndex = firstDisplayedRowIndex;
                }
                catch (Exception)
                {
                    _grid.FirstDisplayedScrollingRowIndex = 0;
                }
 
            }
 
            _grid.Invalidate();
        }
 
        private void BeginIgnoreScrollbarChangeEvents()
        {
            _ignoreScrollbarChange++;
        }
 
        private void EndIgnoreScrollbarChangeEvents()
        {
            if (_ignoreScrollbarChange > 0)
            {
                _ignoreScrollbarChange--;
            }
        }
 
        public void UpdateScrollbar()
        {
            if (_grid == null)
            {
                return;
            }
 
            try
            {
                BeginIgnoreScrollbarChangeEvents();
 
                if (_ishorizontal)
                {
                    //int visibleCols = VisibleFlexGridCols();
                    _scrollbar.Maximum = hScrollbar.Maximum;
                    _scrollbar.Minimum = hScrollbar.Minimum;
                    _scrollbar.SmallChange = hScrollbar.SmallChange;
                    _scrollbar.LargeChange = hScrollbar.LargeChange;
                    _scrollbar.Location = new(0, _grid.Height - _scrollbar.ScrollbarSize);
                    _scrollbar.Width = _grid.Width - (vScrollbar.Visible ? _scrollbar.ScrollbarSize : 0);
                    _scrollbar.BringToFront();
                    _scrollbar.Visible = hScrollbar.Visible;
                    _scrollbar.Value = hScrollbar.Value == 0 ? 1 : hScrollbar.Value;
                }
                else
                {
                    int visibleRows = VisibleFlexGridRows();
                    _scrollbar.Maximum = _grid.RowCount;
                    _scrollbar.Minimum = 1;
                    _scrollbar.SmallChange = 1;
                    _scrollbar.LargeChange = Math.Max(1, visibleRows - 1);
                    _scrollbar.Value = _grid.FirstDisplayedScrollingRowIndex;
                    if (_grid.RowCount > 0 && _grid.Rows[_grid.RowCount - 1].Cells[0].Displayed)
                    {
                        _scrollbar.Value = _grid.RowCount;
                    }
 
                    _scrollbar.Location = new(_grid.Width - _scrollbar.ScrollbarSize, 0);
                    _scrollbar.Height = _grid.Height - (hScrollbar.Visible ? _scrollbar.ScrollbarSize : 0);
                    _scrollbar.BringToFront();
                    _scrollbar.Visible = vScrollbar.Visible;
                }
            }
            finally
            {
                EndIgnoreScrollbarChangeEvents();
            }
        }
 
        private int VisibleFlexGridRows()
        {
            return _grid.DisplayedRowCount(true);
        }
 
        private int VisibleFlexGridCols()
        {
            return _grid.DisplayedColumnCount(true);
        }
 
        public bool VisibleVerticalScroll()
        {
            bool _return = false;
 
            if (_grid.DisplayedRowCount(true) < _grid.RowCount + (_grid.RowHeadersVisible ? 1 : 0))
            {
                _return = true;
            }
 
            return _return;
        }
 
        public bool VisibleHorizontalScroll()
        {
            bool _return = false;
 
            if (_grid.DisplayedColumnCount(true) < _grid.ColumnCount + (_grid.ColumnHeadersVisible ? 1 : 0))
            {
                _return = true;
            }
 
            return _return;
        }
 
        #region Events of interest
 
        private void _grid_Resize(object sender, EventArgs e)
        {
            UpdateScrollbar();
        }
 
        private void _grid_AfterDataRefresh(object sender, ListChangedEventArgs e)
        {
            UpdateScrollbar();
        }
        #endregion
    }
 
    #endregion
}