DataGridTextBoxColumn Constructor (PropertyDescriptor^, String^)
.NET Framework (current version)
Initializes a new instance of a DataGridTextBoxColumn with the specified PropertyDescriptor and format.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- prop
-
Type:
System.ComponentModel::PropertyDescriptor^
The PropertyDescriptor for the column with which the DataGridTextBoxColumn will be associated.
- format
-
Type:
System::String^
The format used to format the column values.
Use this constructor to create a custom format for the displayed data.
The DataGridColumnStyle uses a PropertyDescriptor to determine the type of data displayed in the column. To return a PropertyDescriptorCollection, use the GetItemProperties method of the BindingManagerBase class.
For more information about formatting characters, see Formatting Types in the .NET Framework and Custom Date and Time Format Strings.
The following code example demonstrates the use of this member.
private: void MyAddCustomDataTableStyle() { // Get the currency manager for 'myDataSet'. CurrencyManager^ myCurrencyManger = dynamic_cast<CurrencyManager^>(this->BindingContext[ myDataSet ]); DataGridTableStyle^ myTableStyle = gcnew DataGridTableStyle; myTableStyle->MappingName = "Customers"; PropertyDescriptor^ proprtyDescriptorName = myCurrencyManger->GetItemProperties()[ "CustName" ]; DataGridColumnStyle^ myCustomerNameStyle = gcnew DataGridTextBoxColumn( proprtyDescriptorName ); myCustomerNameStyle->MappingName = "custName"; myCustomerNameStyle->HeaderText = "Customer Name"; myTableStyle->GridColumnStyles->Add( myCustomerNameStyle ); // Add style for 'Date' column. PropertyDescriptor^ myDateDescriptor = myCurrencyManger->GetItemProperties()[ "Date" ]; // 'G' is for MM/dd/yyyy HH:mm:ss date format. DataGridColumnStyle^ myDateStyle = gcnew DataGridTextBoxColumn( myDateDescriptor,"G" ); myDateStyle->MappingName = "Date"; myDateStyle->HeaderText = "Date"; myDateStyle->Width = 150; myTableStyle->GridColumnStyles->Add( myDateStyle ); // Add DataGridTableStyle instances to GridTableStylesCollection. myDataGrid->TableStyles->Add( myTableStyle ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: