DataGridColumn::Visibility Property
.NET Framework (current version)
Gets or sets the visibility of the column.
Assembly: PresentationFramework (in PresentationFramework.dll)
Property Value
Type: System.Windows::VisibilityAn enumeration value that specifies the column visibility. The registered default is Visible. For information about what can influence the value, see DependencyProperty.
The following example shows how to set the visibility of the column.
<CheckBox Content="View Customer Details" Checked="CheckBox_Checked" Unchecked="CheckBox_Unchecked" />
<!-- ItemsSource is a DataTable that contains a list of customers. The DataTable columns are Title, FirstName, MiddleName, LastName, Suffix, CompanyName, EmailAddress, and Phone.--> <DataGrid Grid.Row="1" Name="DG1" ItemsSource="{Binding}" AutoGeneratingColumn="DG1_AutoGeneratingColumn" />
.NET Framework
Available since 4.0
Silverlight
Available since 2.0
Available since 4.0
Silverlight
Available since 2.0
Show: