Articles in this section
Category / Section

How to set image in dropdown GridListControl cell in WinForms GridGroupingControl?

1 min read

Images in dropdown

In GridGroupingControl, you can set the images for dropdown GridListControl by handling the TableControlCurrentCellShowingDropDown to get the GridListControl dropdown and PrepareViewStyleInfo event of dropdown GridListControl to set the images.

 

C#

//Event subscription
this.gridGroupingControl1.TableControlCurrentCellShowingDropDown += gridGroupingControl1_TableControlCurrentCellShowingDropDown;
 
//Handling the PrepareViewStyleInfo event
void gridGroupingControl1_TableControlCurrentCellShowingDropDown(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCurrentCellShowingDropDownEventArgs e)
{
    if ((e.TableControl.CurrentCell.Renderer.DropDownContainer.PopupParent is GridDropDownGridListControlCellRenderer))
    {
        (e.TableControl.CurrentCell.Renderer.DropDownContainer.PopupParent as GridDropDownGridListControlCellRenderer).ListControlPart.ShowColumnHeader = false;
        //Event subscription.
        (e.TableControl.CurrentCell.Renderer.DropDownContainer.PopupParent as GridDropDownGridListControlCellRenderer).ListControlPart.Grid.PrepareViewStyleInfo += Grid_PrepareViewStyleInfo;
    }
}
 
//Set the images in DropDown GridListControl
private void Grid_PrepareViewStyleInfo(object sender, GridPrepareViewStyleInfoEventArgs e)
{
    if (e.ColIndex == 1)
    {
        e.Style.ImageList = imageList2;
        if (e.RowIndex > 0)
            e.Style.ImageIndex = (e.RowIndex - 1) % imageList2.Images.Count;
    }
}

 

VB

'Event subscription
Private Me.gridGroupingControl1.TableControlCurrentCellShowingDropDown += AddressOf gridGroupingControl1_TableControlCurrentCellShowingDropDown
 
'Handling the PrepareViewStyleInfo event
Private Sub gridGroupingControl1_TableControlCurrentCellShowingDropDown(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCurrentCellShowingDropDownEventArgs)
      If (TypeOf e.TableControl.CurrentCell.Renderer.DropDownContainer.PopupParent Is GridDropDownGridListControlCellRenderer) Then
         TryCast(e.TableControl.CurrentCell.Renderer.DropDownContainer.PopupParent, GridDropDownGridListControlCellRenderer).ListControlPart.ShowColumnHeader = False
            'Event subscription.
            AddHandler TryCast(e.TableControl.CurrentCell.Renderer.DropDownContainer.PopupParent, GridDropDownGridListControlCellRenderer).ListControlPart.Grid.PrepareViewStyleInfo, AddressOf Grid_PrepareViewStyleInfo
      End If
End Sub
 
'Set the images in DropDown GridListControl
Private Sub Grid_PrepareViewStyleInfo(ByVal sender As Object, ByVal e As GridPrepareViewStyleInfoEventArgs)
      If e.ColIndex = 1 Then
            e.Style.ImageList = imageList2
            If e.RowIndex > 0 Then
                    e.Style.ImageIndex = (e.RowIndex - 1) Mod imageList2.Images.Count
            End If
      End If
End Sub

Screenshot

Images in dropdown GridListControl cell

Samples:

C#: Images_In_DropDown

VB: Images_In_DropDown

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied