DataGridParentRowsLabelStyle Výčet

Definice

Určuje způsob zobrazení popisků nadřazených DataGrid řádků ovládacího prvku.

public enum class DataGridParentRowsLabelStyle
public enum DataGridParentRowsLabelStyle
type DataGridParentRowsLabelStyle = 
Public Enum DataGridParentRowsLabelStyle
Dědičnost
DataGridParentRowsLabelStyle

Pole

Both 3

Zobrazí názvy nadřazených tabulek i sloupců.

ColumnName 2

Zobrazí název nadřazeného sloupce.

None 0

Nezobrazují se žádné popisky nadřazených řádků.

TableName 1

Zobrazí název nadřazené tabulky.

Příklady

Následující příklad iteruje každou z možných hodnot pro 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

Poznámky

Pomocí členů tohoto výčtu nastavte hodnotu ParentRowsLabelStyle vlastnosti.

Nadřazené řádky lze zobrazit pouze v DataGrid případě, že obsahuje alespoň jeden DataRelation až druhý DataTable, a pokud AllowNavigation je vlastnost nastavena na hodnotu, která umožňuje navigaci.

Platí pro

Viz také