Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
12274 | Mar 25,2004 11:06 AM UTC | Mar 25,2004 03:25 PM UTC | WinForms | 2 |
![]() |
Tags: GridControl |
'' subscribe to the event in FormLoad...
AddHandler gridControl1.CurrentCellShowingDropDown, AddressOf gridControl_CurrentCellShowingDropDown
'' the handler
Private Sub gridControl_CurrentCellShowingDropDown(ByVal sender As Object, ByVal e As GridCurrentCellShowingDropDownEventArgs)
Dim cc As GridCurrentCell = Me.gridControl1.CurrentCell
If cc.Renderer.GetType() Is GetType(DropDownGridCellRenderer) Then
Dim grid As GridControl = CType(cc.Renderer.Model, DropDownGridCellModel).EmbeddedGrid
grid.HScrollBehavior = GridScrollbarMode.Disabled
grid.VScrollBehavior = GridScrollbarMode.Disabled
Dim w As Integer = grid.Model.ColWidths.GetTotal(0, grid.Model.ColCount) + 16
Dim h As Integer = grid.Model.RowHeights.GetTotal(0, grid.Model.RowCount) + 16
e.Size = New Size(w, h)
End If
End Sub
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
or the page will be automatically redirected to sign-in page in 10 seconds.