VB.NET Datagridview 增加列用来显示进度条

前端之家收集整理的这篇文章主要介绍了VB.NET Datagridview 增加列用来显示进度条前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

这段代码演示了在DataGridView中增加一个列显示进度条,在批量上传和下载的时候常用到。

进度条的变化如: DataGridview.row(x).cell(x).value=50
改变他的值就是了。

标签 <无>

代码片段(4)

[代码] [ASP/Basic]代码

@H_403_38@
001 Imports System
@H_403_38@
002 Imports System.Drawing
@H_403_38@
003 Imports System.Windows.Forms
@H_403_38@
004 Public Class DataGridViewPrassBar
@H_403_38@
005 Public Class DataGridViewProgressBarColumn
@H_403_38@
006 Inherits DataGridViewTextBoxColumn
@H_403_38@
007
@H_403_38@
008 Public Sub New()
@H_403_38@
009 Me.CellTemplate = New DataGridViewProgressBarCell()
@H_403_38@
010 End Sub
@H_403_38@
011
@H_403_38@
012 Public Overrides Property CellTemplate() As DataGridViewCell
@H_403_38@
013 Get
@H_403_38@
014 Return MyBase.CellTemplate
@H_403_38@
015 End Get
@H_403_38@
016 Set(ByVal value As DataGridViewCell)
@H_403_38@
017 If Not TypeOf value Is DataGridViewProgressBarCell Then
@H_403_38@
018 Throw New InvalidCastException("DataGridViewProgressBarCellオブジェクトを" + "指定してください。")
@H_403_38@
019 End If
@H_403_38@
020 MyBase.CellTemplate = value
@H_403_38@
021 End Set
@H_403_38@
022
@H_403_38@
023 End Property
@H_403_38@
024
@H_403_38@
025
@H_403_38@
026
@H_403_38@
027 Public Property Maximum() As Integer
@H_403_38@
028 Get
@H_403_38@
029 Return CType(Me.CellTemplate,DataGridViewProgressBarCell).Maximum
@H_403_38@
030 End Get
@H_403_38@
031 Set(ByVal value As Integer)
@H_403_38@
032 If Me.Maximum = value Then
@H_403_38@
033 Return
@H_403_38@
034 End If
@H_403_38@
035 CType(Me.CellTemplate,DataGridViewProgressBarCell).Maximum = value
@H_403_38@
036 If Me.DataGridView Is Nothing Then
@H_403_38@
037 Return
@H_403_38@
038 End If
@H_403_38@
039 Dim rowCount As Integer = Me.DataGridView.RowCount
@H_403_38@
040 Dim i As Integer
@H_403_38@
041 For i = 0 To rowCount - 1
@H_403_38@
042 Dim r As DataGridViewRow = Me.DataGridView.Rows.SharedRow(i)
@H_403_38@
043 CType(r.Cells(Me.Index),DataGridViewProgressBarCell).Maximum = value
@H_403_38@
044 Next i
@H_403_38@
045 End Set
@H_403_38@
046 End Property
@H_403_38@
047
@H_403_38@
048
@H_403_38@
049
@H_403_38@
050 Public Property Mimimum() As Integer
@H_403_38@
051 Get
@H_403_38@
052 Return CType(Me.CellTemplate,DataGridViewProgressBarCell).Mimimum
@H_403_38@
053 End Get
@H_403_38@
054 Set(ByVal value As Integer)
@H_403_38@
055
@H_403_38@
056 If Me.Mimimum = value Then
@H_403_38@
057
@H_403_38@
058 Return
@H_403_38@
059
@H_403_38@
060 End If
@H_403_38@
061
@H_403_38@
062 CType(Me.CellTemplate,DataGridViewProgressBarCell).Mimimum = value
@H_403_38@
063
@H_403_38@
064 If Me.DataGridView Is Nothing Then
@H_403_38@
065
@H_403_38@
066 Return
@H_403_38@
067
@H_403_38@
068 End If
@H_403_38@
069 Dim rowCount As Integer = Me.DataGridView.RowCount
@H_403_38@
070 Dim i As Integer
@H_403_38@
071 For i = 0 To rowCount - 1
@H_403_38@
072 Dim r As DataGridViewRow = Me.DataGridView.Rows.SharedRow(i)
@H_403_38@
073 CType(r.Cells(Me.Index),DataGridViewProgressBarCell).Mimimum = value
@H_403_38@
074 Next i
@H_403_38@
075 End Set
@H_403_38@
076 End Property
@H_403_38@
077
@H_403_38@
078 End Class
@H_403_38@
079
@H_403_38@
080
@H_403_38@
081
@H_403_38@
082 Public Class DataGridViewProgressBarCell
@H_403_38@
083 Inherits DataGridViewTextBoxCell
@H_403_38@
084
@H_403_38@
085 Public Sub New()
@H_403_38@
086 Me.maximumValue = 100
@H_403_38@
087 Me.mimimumValue = 0
@H_403_38@
088 End Sub
@H_403_38@
089 Private maximumValue As Integer
@H_403_38@
090
@H_403_38@
091 Public Property Maximum() As Integer
@H_403_38@
092 Get
@H_403_38@
093 Return Me.maximumValue
@H_403_38@
094 End Get
@H_403_38@
095 Set(ByVal value As Integer)
@H_403_38@
096 Me.maximumValue = value
@H_403_38@
097 End Set
@H_403_38@
098 End Property
@H_403_38@
099
@H_403_38@
100
@H_403_38@
101
@H_403_38@
102 Private mimimumValue As Integer
@H_403_38@
103
@H_403_38@
104 Public Property Mimimum() As Integer
@H_403_38@
105 Get
@H_403_38@
106 Return Me.mimimumValue
@H_403_38@
107 End Get
@H_403_38@
108 Set(ByVal value As Integer)
@H_403_38@
109 Me.mimimumValue = value
@H_403_38@
110 End Set
@H_403_38@
111 End Property
@H_403_38@
112
@H_403_38@
113
@H_403_38@
114
@H_403_38@
115 Public Overrides ReadOnly Property ValueType() As Type
@H_403_38@
116
@H_403_38@
117 Get
@H_403_38@
118
@H_403_38@
119 Return GetType(Integer)
@H_403_38@
120
@H_403_38@
121 End Get
@H_403_38@
122
@H_403_38@
123 End Property
@H_403_38@
124
@H_403_38@
125
@H_403_38@
126
@H_403_38@
127 Public Overrides ReadOnly Property DefaultNewRowValue() As Object
@H_403_38@
128
@H_403_38@
129 Get
@H_403_38@
130
@H_403_38@
131 Return 0
@H_403_38@
132
@H_403_38@
133 End Get
@H_403_38@
134
@H_403_38@
135 End Property
@H_403_38@
136
@H_403_38@
137
@H_403_38@
138
@H_403_38@
139 Public Overrides Function Clone() As Object
@H_403_38@
140 Dim cell As DataGridViewProgressBarCell = CType(MyBase.Clone(),DataGridViewProgressBarCell)
@H_403_38@
141 cell.Maximum = Me.Maximum
@H_403_38@
142 cell.Mimimum = Me.Mimimum
@H_403_38@
143 Return cell
@H_403_38@
144 End Function
@H_403_38@
145
@H_403_38@
146
@H_403_38@
147
@H_403_38@
148 Protected Overrides Sub Paint(ByVal graphics As Graphics, ByVal clipBounds As Rectangle,ByVal cellBounds As Rectangle,ByVal rowIndex As Integer,ByVal cellState As DataGridViewElementStates,ByVal value As Object,ByVal formattedValue As Object,ByVal errorText As String,ByVal cellStyle As DataGridViewCellStyle, ByVal advancedBorderStyle As DataGridViewAdvancedBorderStyle,ByVal paintParts As DataGridViewPaintParts)
@H_403_38@
149 Dim intValue As Integer = 0
@H_403_38@
150 If TypeOf value Is Integer Then
@H_403_38@
151 intValue = CInt(value)
@H_403_38@
152 End If
@H_403_38@
153 If intValue < Me.mimimumValue Then
@H_403_38@
154 intValue = Me.mimimumValue
@H_403_38@
155 End If
@H_403_38@
156
@H_403_38@
157 If intValue > Me.maximumValue Then
@H_403_38@
158 intValue = Me.maximumValue
@H_403_38@
159 End If
@H_403_38@
160
@H_403_38@
161 Dim rate As Double = CDbl(intValue - Me.mimimumValue) / (Me.maximumValue - Me.mimimumValue)
@H_403_38@
162 If (paintParts And DataGridViewPaintParts.Border) = DataGridViewPaintParts.Border Then
@H_403_38@
163 Me.PaintBorder(graphics,clipBounds,cellBounds,cellStyle,advancedBorderStyle)
@H_403_38@
164 End If
@H_403_38@
165 Dim borderRect As Rectangle = Me.BorderWidths(advancedBorderStyle)
@H_403_38@
166 Dim paintRect As New Rectangle(cellBounds.Left + borderRect.Left,cellBounds.Top + borderRect.Top,cellBounds.Width - borderRect.Right,cellBounds.Height - borderRect.Bottom)
@H_403_38@
167 Dim isSelected As Boolean = ((cellState And DataGridViewElementStates.Selected) = DataGridViewElementStates.Selected)
@H_403_38@
168 Dim bkColor As Color
@H_403_38@
169 If isSelected AndAlso (paintParts And DataGridViewPaintParts.SelectionBackground) = DataGridViewPaintParts.SelectionBackground Then
@H_403_38@
170 bkColor = cellStyle.SelectionBackColor
@H_403_38@
171 Else
@H_403_38@
172 bkColor = cellStyle.BackColor
@H_403_38@
173 End If
@H_403_38@
174 If (paintParts And DataGridViewPaintParts.Background) = DataGridViewPaintParts.Background Then
@H_403_38@
175 Dim backBrush As New SolidBrush(bkColor)
@H_403_38@
176 Try
@H_403_38@
177 graphics.FillRectangle(backBrush,paintRect)
@H_403_38@
178 Finally
@H_403_38@
179 backBrush.Dispose()
@H_403_38@
180 End Try
@H_403_38@
181 End If
@H_403_38@
182 paintRect.Offset(cellStyle.Padding.Right,cellStyle.Padding.Top)
@H_403_38@
183 paintRect.Width -= cellStyle.Padding.Horizontal
@H_403_38@
184 paintRect.Height -= cellStyle.Padding.Vertical
@H_403_38@
185 If (paintParts And DataGridViewPaintParts.ContentForeground) = DataGridViewPaintParts.ContentForeground Then
@H_403_38@
186 If ProgressBarRenderer.IsSupported Then
@H_403_38@
187 ProgressBarRenderer.DrawHorizontalBar(graphics,paintRect)
@H_403_38@
188 Dim barBounds As New Rectangle(paintRect.Left + 3,paintRect.Top + 3,paintRect.Width - 4,paintRect.Height - 6)
@H_403_38@
189 barBounds.Width = CInt(Math.Round((barBounds.Width * rate)))
@H_403_38@
190 ProgressBarRenderer.DrawHorizontalChunks(graphics,barBounds)
@H_403_38@
191 Else
@H_403_38@
192 graphics.FillRectangle(Brushes.White,paintRect)
@H_403_38@
193 graphics.DrawRectangle(Pens.Black,paintRect)
@H_403_38@
194 Dim barBounds As New Rectangle(paintRect.Left + 1,paintRect.Top + 1,paintRect.Width - 1,paintRect.Height - 1)
@H_403_38@
195 barBounds.Width = CInt(Math.Round((barBounds.Width * rate)))
@H_403_38@
196 graphics.FillRectangle(Brushes.Blue,barBounds)
@H_403_38@
197 End If
@H_403_38@
198 End If
@H_403_38@
199 If Me.DataGridView.CurrentCellAddress.X = Me.ColumnIndex AndAlso Me.DataGridView.CurrentCellAddress.Y = Me.RowIndex AndAlso (paintParts And DataGridViewPaintParts.Focus) = DataGridViewPaintParts.Focus AndAlso Me.DataGridView.Focused Then
@H_403_38@
200 Dim focusRect As Rectangle = paintRect
@H_403_38@
201 focusRect.Inflate(-3,-3)
@H_403_38@
202 ControlPaint.DrawFocusRectangle(graphics,focusRect)
@H_403_38@
203 End If
@H_403_38@
204 If (paintParts And DataGridViewPaintParts.ContentForeground) = DataGridViewPaintParts.ContentForeground Then
@H_403_38@
205 Dim txt As String = String.Format("{0}%",Math.Round((rate * 100)))
@H_403_38@
206 Dim flags As TextFormatFlags = TextFormatFlags.HorizontalCenter Or TextFormatFlags.VerticalCenter
@H_403_38@
207 Dim fColor As Color = cellStyle.ForeColor
@H_403_38@
208 paintRect.Inflate(-2,-2)
@H_403_38@
209 TextRenderer.DrawText(graphics,txt,cellStyle.Font,paintRect,fColor,flags)
@H_403_38@
210
@H_403_38@
211 End If
@H_403_38@
212 If (paintParts And DataGridViewPaintParts.ErrorIcon) = DataGridViewPaintParts.ErrorIcon AndAlso Me.DataGridView.ShowCellErrors AndAlso Not String.IsNullOrEmpty(errorText) Then
@H_403_38@
213 Dim iconBounds As Rectangle = Me.GetErrorIconBounds(graphics,rowIndex)
@H_403_38@
214
@H_403_38@
215 iconBounds.Offset(cellBounds.X,cellBounds.Y)
@H_403_38@
216
@H_403_38@
217 Me.PaintErrorIcon(graphics,iconBounds,errorText)
@H_403_38@
218
@H_403_38@
219 End If
@H_403_38@
220
@H_403_38@
221 End Sub
@H_403_38@
222
@H_403_38@
223 End Class
@H_403_38@
224
@H_403_38@
225
@H_403_38@
226
@H_403_38@
227 End Class
@H_403_38@
228
@H_403_38@
229 调用
@H_403_38@
230
@H_403_38@
231 Dim pbColumn As New DataGridViewPrassBar.DataGridViewProgressBarColumn()
@H_403_38@
232 pbColumn.DataPropertyName = "Column1"
@H_403_38@
233 DataGridView1.Columns.Add(pbColumn)

[图片] 未命名.jpg

[代码] [ASP/Basic]代码

@H_403_38@
001 Imports System
@H_403_38@
002 Imports System.Drawing
@H_403_38@
003 Imports System.Windows.Forms
@H_403_38@
004 Public Class DataGridViewPrassBar
@H_403_38@
005 Public Class DataGridViewProgressBarColumn
@H_403_38@
006 Inherits DataGridViewTextBoxColumn
@H_403_38@
007
@H_403_38@
008 Public Sub New()
@H_403_38@
009 Me.CellTemplate = New DataGridViewProgressBarCell()
@H_403_38@
010 End Sub
@H_403_38@
011
@H_403_38@
012 Public Overrides Property CellTemplate() As DataGridViewCell
@H_403_38@
013 Get
@H_403_38@
014 Return MyBase.CellTemplate
@H_403_38@
015 End Get
@H_403_38@
016 Set(ByVal value As DataGridViewCell)
@H_403_38@
017 If Not TypeOf value Is DataGridViewProgressBarCell Then
@H_403_38@
018 Throw New InvalidCastException("DataGridViewProgressBarCellオブジェクトを" + "指定してください。")
@H_403_38@
019 End If
@H_403_38@
020 MyBase.CellTemplate = value
@H_403_38@
021 End Set
@H_403_38@
022
@H_403_38@
023 End Property
@H_403_38@
024
@H_403_38@
025
@H_403_38@
026
@H_403_38@
027 Public Property Maximum() As Integer
@H_403_38@
028 Get
@H_403_38@
029 Return CType(Me.CellTemplate,errorText)
@H_403_38@
218
@H_403_38@
219 End If
@H_403_38@
220
@H_403_38@
221 End Sub
@H_403_38@
222
@H_403_38@
223 End Class
@H_403_38@
224
@H_403_38@
225
@H_403_38@
226
@H_403_38@
227 End Class
@H_403_38@
228
@H_403_38@
229 调用
@H_403_38@
230
@H_403_38@
231 Dim pbColumn As New DataGridViewPrassBar.DataGridViewProgressBarColumn()
@H_403_38@
232 pbColumn.DataPropertyName = "Column1"
@H_403_38@
233 DataGridView1.Columns.Add(pbColumn)

[图片] 未命名.jpg

猜你在找的VB相关文章