DataGridHeadersVisibility Enumeration
Specifies constants that define which DataGrid header cells are displayed.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Windows.Controls
Assembly: System.Windows.Controls.Data (in System.Windows.Controls.Data.dll)
This enumeration is used by the DataGrid.HeadersVisibility property.
The following code example demonstrates how to use the DataGridHeadersVisibility enumeration. This example is part of a larger example available in the Walkthrough: Customizing the DataGrid Control Using Properties topic.
Private Sub cbHeaders_SelectionChanged(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Dim cb As ComboBox = sender Dim cbi As ComboBoxItem = cb.SelectedItem If Me.dataGrid1 IsNot Nothing Then If cbi.Content.ToString() = "All" Then Me.dataGrid1.HeadersVisibility = DataGridHeadersVisibility.All ElseIf cbi.Content.ToString() = "Column (Default)" Then Me.dataGrid1.HeadersVisibility = DataGridHeadersVisibility.Column ElseIf cbi.Content.ToString() = "Row" Then Me.dataGrid1.HeadersVisibility = DataGridHeadersVisibility.Row Else Me.dataGrid1.HeadersVisibility = DataGridHeadersVisibility.None End If End If End Sub
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.