DataGrid for Windows Forms: suppress plus sign

  • Thread starter Thread starter Ken Morris
  • Start date Start date
K

Ken Morris

Any ideas on how to suppress the plus sign (+) beside a
DataGrid row when that particular parent row has no
records in the corresponding child table?

This applies to a datagrid for a Windows form.

Much thanks to the white knight who can help me.
 
Hi Ken,

The DataGrid class should have an EnableNavigation property (or something
similar) that just disables these [+]es. There's also a DataGridTableStyle
class you can apply to a certain data table bound to the grid - may be this
property is available only from the DataGridTableStyle.
 
Back
Top