DataGridViewBand::Frozen Property
.NET Framework (current version)
Gets or sets a value indicating whether the band will move when a user scrolls through the DataGridView.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Property Value
Type: System::Booleantrue if the band cannot be scrolled from view; otherwise, false. The default is false.
This property can hold a band of important information in place when a user scrolls through the DataGridView. Bands adjacent to the frozen band will move over the frozen band.
The following code example freezes a band of cells in a column and a row. The example also changes the default cell style of the frozen bands to specify which bands are frozen. This code example is part of a larger example provided for the DataGridViewBand class.
// Freeze the first row. void Button4_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ ) { FreezeBand( dataGridView->Rows[ 0 ] ); } void Button5_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ ) { FreezeBand( dataGridView->Columns[ 1 ] ); } void FreezeBand( DataGridViewBand^ band ) { band->Frozen = true; DataGridViewCellStyle^ style = gcnew DataGridViewCellStyle; style->BackColor = Color::WhiteSmoke; band->DefaultCellStyle = style; }
.NET Framework
Available since 2.0
Available since 2.0
Show: