DataGridParentRowsLabelStyle 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定 DataGrid 控制項的父資料列的標籤 (Label) 如何顯示。
public enum class DataGridParentRowsLabelStyle
public enum DataGridParentRowsLabelStyle
type DataGridParentRowsLabelStyle =
Public Enum 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 到一秒 DataTable 時 DataGrid ,才能顯示父資料列,而且如果 AllowNavigation 屬性設定為允許流覽的值,則為 。