Aracılığıyla paylaş


DataGridParentRowsLabelStyle Sabit listesi

Tanım

Dikkat

DataGrid is provided for binary compatibility with .NET Framework and is not intended to be used directly from your code. Use DataGridView instead.

DataGrid denetiminin üst satır etiketlerinin nasıl görüntüleneceğini belirtir.

public enum class DataGridParentRowsLabelStyle
public enum DataGridParentRowsLabelStyle
[System.ComponentModel.Browsable(false)]
[System.Obsolete("`DataGrid` is provided for binary compatibility with .NET Framework and is not intended to be used directly from your code. Use `DataGridView` instead.", false, DiagnosticId="WFDEV006", UrlFormat="https://aka.ms/winforms-warnings/{0}")]
public enum DataGridParentRowsLabelStyle
type DataGridParentRowsLabelStyle = 
[<System.ComponentModel.Browsable(false)>]
[<System.Obsolete("`DataGrid` is provided for binary compatibility with .NET Framework and is not intended to be used directly from your code. Use `DataGridView` instead.", false, DiagnosticId="WFDEV006", UrlFormat="https://aka.ms/winforms-warnings/{0}")>]
type DataGridParentRowsLabelStyle = 
Public Enum DataGridParentRowsLabelStyle
Devralma
DataGridParentRowsLabelStyle
Öznitelikler

Alanlar

Name Değer Description
None 0

Üst satır etiketi görüntüleme.

TableName 1

Üst tablo adını görüntüler.

ColumnName 2

Üst sütun adını görüntüler.

Both 3

Hem üst tablo hem de sütun adlarını görüntüler.

Örnekler

Aşağıdaki örnek, için DataGridParentRowsLabelStyleolası değerlerin her birinde yinelenir.

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

Açıklamalar

Özelliğin değerini ayarlamak için bu numaralandırmanın üyelerini ParentRowsLabelStyle kullanın.

Üst satırlar yalnızca DataGrid , en az bir DataRelation ile saniye DataTablearasında bir değer içeriyorsa ve özelliği gezintiye izin veren bir değere ayarlanmışsa AllowNavigation görüntülenebilir.

Şunlara uygulanır

Ayrıca bkz.