DataGridParentRowsLabelStyle Enumeration
.NET Framework 3.0
Specifies how the parent row labels of a DataGrid control are displayed.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
Assembly: System.Windows.Forms (in system.windows.forms.dll)
Use the members of this enumeration to set the value of the ParentRowsLabelStyle property.
Parent rows can be displayed only if the DataGrid contains at least one DataRelation to a second DataTable, and if the AllowNavigation property is set to a value that allows navigation.
The following example iterates through each of the possible values for the DataGridParentRowsLabelStyle.
Private Sub ChangeParentRowLabels(ByVal myGrid As DataGrid) Static currentLabelStyle As Integer If currentLabelStyle = 4 Then currentLabelStyle = 0 Select Case currentLabelStyle Case 0 myGrid.ParentRowsLabelStyle = DataGridParentRowsLabelStyle.None Case 1 myGrid.ParentRowsLabelStyle = DataGridParentRowsLabelStyle.TableName Case 2 myGrid.ParentRowsLabelStyle = DataGridParentRowsLabelStyle.ColumnName Case 3 myGrid.ParentRowsLabelStyle = DataGridParentRowsLabelStyle.Both Case Else myGrid.ParentRowsLabelStyle = DataGridParentRowsLabelStyle.Both End Select ' Increment the variable. currentLabelStyle+=1 End Sub
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: