我使用 datagridview 显示来自可能有 0 到 x 行数的数据库的查询结果。
因此,我进行了计算以计算底层表单的大小,并且我的 datagridview 取决于匹配的行数。
底层表单是透明的,所有这些看起来都像是用户控制的内容,并且工作正常。
但这里有一个问题:
每次数据网格必须增长时,该区域的黑色方块会在数据网格被填充之前显示出来,这不是很好而且肯定是不需要的。
我可以做一些通常的事情来避免这种情况吗?
datagridview 是否有某种机制来冻结它并在填充完成时显示数据?
或者还有什么可做的?
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
Dim tw As Integer = 0
Dim n As Integer = 0
Dim sqlText As String
Dim reader As OdbcDataReader = Nothing
Dim btCommand As OdbcCommand = Nothing
Dim mCmd As OdbcCommand = Nothing
Dim mCon As New Odbc.OdbcConnection
DataGridView1.Rows.Clear()
If Trim(TextBox1.Text).Length Then
mCon.ConnectionString = "Dsn=" + dbDsn + _
";database=" + mydatabase + ";server=" + dbServer + ";port=" + dbPort + _
";uid=" + dbUser + ";pwd=" + dbPass
Try
mCon.Open()
btCommand = New OdbcCommand("BEGIN TRANSACTION", mCon)
sqlText = "SELECT dtbl_id, name... etc... FROM mytable WHERE name ILIKE '%" & Trim(TextBox1.Text) & "%' ORDER BY name LIMIT 128"
mCmd = New OdbcCommand(sqlText, mCon)
reader = mCmd.ExecuteReader()
While (reader.Read())
Dim t_kol, t_ci As String
If reader.GetValue(4) - reader.GetValue(5) = 0 Then
t_kol = "- "
Else
t_kol = FormatNumber((reader.GetValue(4) - reader.GetValue(5)), 2)
End If
t_ci = FormatNumber(reader.GetValue(3))
With DataGridView1.Rows.Add(New String() {reader.GetValue(0).ToString(), _
reader.GetValue(1).ToString(), _
reader.GetValue(2).ToString(), _
t_kol, _
t_ci, _
reader.GetValue(6).ToString(), _
reader.GetValue(7).ToString})
n = n + 1
End With
End While
btCommand = New OdbcCommand("END TRANSACTION", mCon)
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.Critical + MsgBoxStyle.OkOnly)
Finally
reader.Close()
reader.Dispose()
btCommand.Dispose()
mCmd.Dispose()
If n < 1 Then
DataGridView1.Height = 0
DataGridView1.Height = DataGridView1.Height + DataGridView1.Top
End If
End Try
mCon.Close()
mCon.Dispose()
End If
If n < 1 Then
DataGridView1.Height = 0
Else
DataGridView1.Height = DataGridView1.ColumnHeadersHeight + (n * DataGridView1.RowTemplate.Height) + 2
End If
Dim p As Point = Me.PointToScreen(DataGridView1.Location)
If p.Y + DataGridView1.Height >= My.Computer.Screen.WorkingArea.Height Then DataGridView1.Height = My.Computer.Screen.WorkingArea.Height - p.Y
tw = totalwidth + (Math.Abs(CInt(DataGridView1.Controls(1).Visible)) * CInt(DataGridView1.Controls(1).Width))
DataGridView1.Width = tw + 2
With Me
.Width = tw + 4
.Height = DataGridView1.Height + DataGridView1.Top
End With
End Sub