Thanks..., works perfect.
>In Form.Load, you can subscribe to the embedded grid''s PrepareViewStyleInfo and use that event to alternate colors.
>
>GridDropDownGridListControlCellRenderer cr = this.gridDataBoundGrid1.CellRenderers["GridListControl"] as GridDropDownGridListControlCellRenderer;
>cr.ListControlPart.Grid.PrepareViewStyleInfo += new GridPrepareViewStyleInfoEventHandler(Grid_PrepareViewStyleInfo);
>
>
>
>private void Grid_PrepareViewStyleInfo(object sender, GridPrepareViewStyleInfoEventArgs e)
>{
> if(e.RowIndex % 2 == 1 && e.ColIndex > 0)
> {
> e.Style.BackColor = Color.Red;
> }
>}
>
>
>
>