DataGridParentRowsLabelStyle 列舉

定義

指定 DataGrid 控制項的父資料列的標籤 (Label) 如何顯示。

public enum class DataGridParentRowsLabelStyle
public enum DataGridParentRowsLabelStyle
type DataGridParentRowsLabelStyle = 
Public Enum DataGridParentRowsLabelStyle
繼承
DataGridParentRowsLabelStyle

欄位

Both 3

顯示父資料表和資料行兩者。

ColumnName 2

顯示父資料行名稱。

None 0

不顯示父資料列的標籤。

TableName 1

顯示父資料表名稱。

範例

下列範例會逐一查看 的每個可能值 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

備註

使用這個列舉的成員來設定 屬性的值 ParentRowsLabelStyle

只有在 包含至少一 DataRelation 到一秒 DataTableDataGrid ,才能顯示父資料列,而且如果 AllowNavigation 屬性設定為允許流覽的值,則為 。

適用於

另請參閱