GridTableStylesCollection.Add(DataGridTableStyle) Methode
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Voegt een DataGridTableStyle aan deze verzameling toe.
public:
virtual int Add(System::Windows::Forms::DataGridTableStyle ^ table);
public virtual int Add(System.Windows.Forms.DataGridTableStyle table);
abstract member Add : System.Windows.Forms.DataGridTableStyle -> int
override this.Add : System.Windows.Forms.DataGridTableStyle -> int
Public Overridable Function Add (table As DataGridTableStyle) As Integer
Parameters
- table
- DataGridTableStyle
De DataGridTableStyle toe te voegen aan de verzameling.
Retouren
De index van het zojuist toegevoegde object.
Voorbeelden
In het volgende codevoorbeeld worden twee DataGridTableStyle objecten gemaakt. In het voorbeeld worden vervolgens verschillende DataGridColumnStyle objecten gemaakt en toegevoegd aan de GridColumnStylesCollection. Ten slotte worden de DataGridTableStyle objecten aan de GridTableStylesCollection methode toegevoegd.Add
void AddDataGridTableStyle()
{
// Create a new DataGridTableStyle and set MappingName.
DataGridTableStyle^ myGridStyle = gcnew DataGridTableStyle;
myGridStyle->MappingName = "Customers";
// Create two DataGridColumnStyle objects.
DataGridColumnStyle^ colStyle1 = gcnew DataGridTextBoxColumn;
colStyle1->MappingName = "firstName";
DataGridColumnStyle^ colStyle2 = gcnew DataGridBoolColumn;
colStyle2->MappingName = "Current";
// Add column styles to table style.
myGridStyle->GridColumnStyles->Add( colStyle1 );
myGridStyle->GridColumnStyles->Add( colStyle2 );
// Add the grid style to the GridStylesCollection.
myDataGrid->TableStyles->Add( myGridStyle );
}
private void AddDataGridTableStyle()
{
// Create a new DataGridTableStyle and set MappingName.
DataGridTableStyle myGridStyle =
new DataGridTableStyle();
myGridStyle.MappingName = "Customers";
// Create two DataGridColumnStyle objects.
DataGridColumnStyle colStyle1 =
new DataGridTextBoxColumn();
colStyle1.MappingName = "firstName";
DataGridColumnStyle colStyle2 =
new DataGridBoolColumn();
colStyle2.MappingName = "Current";
// Add column styles to table style.
myGridStyle.GridColumnStyles.Add(colStyle1);
myGridStyle.GridColumnStyles.Add(colStyle2);
// Add the grid style to the GridStylesCollection.
myDataGrid.TableStyles.Add(myGridStyle);
}
Private Sub AddDataGridTableStyle()
' Create a new DataGridTableStyle and set MappingName.
Dim myGridStyle As DataGridTableStyle = _
new DataGridTableStyle()
myGridStyle.MappingName = "Customers"
' Add two DataGridColumnStyle objects.
Dim colStyle1 As DataGridColumnStyle = _
new DataGridTextBoxColumn()
colStyle1.MappingName = "firstName"
Dim colStyle2 As DataGridColumnStyle = _
new DataGridBoolColumn()
colStyle2.MappingName = "Current"
' Add column styles to table style.
myGridStyle.GridColumnStyles.Add(colStyle1)
myGridStyle.GridColumnStyles.Add(colStyle2)
' Add the grid style to the GridStylesCollection.
myDataGrid.TableStyles.Add(myGridStyle)
End Sub