DataGridTableStyle.GridLineColorChanged イベント
GridLineColor の値が変更された場合に発生します。
Public Event GridLineColorChanged As EventHandler
[C#]
public event EventHandler GridLineColorChanged;
[C++]
public: __event EventHandler* GridLineColorChanged;
[JScript] JScript では、このクラスで定義されているイベントを処理できます。ただし、独自に定義することはできません。
イベント データ
イベント ハンドラが EventArgs 型の引数を受け取りました。
解説
イベント処理の詳細については、「 イベントの利用 」を参照してください。
使用例
Private Sub AddCustomDataTableStyle()
myDataGridTableStyle1 = New DataGridTableStyle()
' EventHandlers
AddHandler myDataGridTableStyle1.GridLineColorChanged, AddressOf GridLineColorChanged_Handler
myDataGridTableStyle1.MappingName = "Customers"
' Set other properties.
myDataGridTableStyle1.AlternatingBackColor = System.Drawing.Color.Gold
myDataGridTableStyle1.BackColor = System.Drawing.Color.White
myDataGridTableStyle1.GridLineStyle = System.Windows.Forms.DataGridLineStyle.Solid
myDataGridTableStyle1.GridLineColor = Color.Red
' Set the HeaderText and Width properties.
Dim myBoolCol = New DataGridBoolColumn()
myBoolCol.MappingName = "Current"
myBoolCol.HeaderText = "IsCurrent Customer"
myBoolCol.Width = 150
myDataGridTableStyle1.GridColumnStyles.Add(myBoolCol)
' Add a second column style.
Dim myTextCol = New DataGridTextBoxColumn()
myTextCol.MappingName = "custName"
myTextCol.HeaderText = "Customer Name"
myTextCol.Width = 250
myDataGridTableStyle1.GridColumnStyles.Add(myTextCol)
' Create new ColumnStyle objects
Dim cOrderDate = New DataGridTextBoxColumn()
cOrderDate.MappingName = "OrderDate"
cOrderDate.HeaderText = "Order Date"
cOrderDate.Width = 100
' Use a PropertyDescriptor to create a formatted column.
Dim myPropertyDescriptorCollection As PropertyDescriptorCollection = _
BindingContext(myDataSet, "Customers.custToOrders").GetItemProperties()
' Create a formatted column using a PropertyDescriptor.
Dim csOrderAmount = New DataGridTextBoxColumn(myPropertyDescriptorCollection( _
"OrderAmount"), "c", True)
csOrderAmount.MappingName = "OrderAmount"
csOrderAmount.HeaderText = "Total"
csOrderAmount.Width = 100
' Add the DataGridTableStyle instances to the GridTableStylesCollection.
myDataGrid.TableStyles.Add(myDataGridTableStyle1)
End Sub 'AddCustomDataTableStyle
Private Sub GridLineColorChanged_Handler(ByVal sender As Object, ByVal e As EventArgs)
MessageBox.Show("GridLineColor Changed", "DataGridTableStyle")
End Sub 'GridLineColorChanged_Handler
[C#]
private void AddCustomDataTableStyle()
{
myDataGridTableStyle1 = new DataGridTableStyle();
// EventHandlers
myDataGridTableStyle1.GridLineColorChanged += new System.EventHandler(GridLineColorChanged_Handler);
myDataGridTableStyle1.MappingName = "Customers";
// Set other properties.
myDataGridTableStyle1.AlternatingBackColor=System.Drawing.Color.Gold;
myDataGridTableStyle1.BackColor = System.Drawing.Color.White;
myDataGridTableStyle1.GridLineStyle=System.Windows.Forms.DataGridLineStyle.Solid;
myDataGridTableStyle1.GridLineColor=Color.Red;
// Set the HeaderText and Width properties.
DataGridColumnStyle myBoolCol = new DataGridBoolColumn();
myBoolCol.MappingName = "Current";
myBoolCol.HeaderText = "IsCurrent Customer";
myBoolCol.Width = 150;
myDataGridTableStyle1.GridColumnStyles.Add(myBoolCol);
// Add a second column style.
DataGridColumnStyle myTextCol = new DataGridTextBoxColumn();
myTextCol.MappingName = "custName";
myTextCol.HeaderText = "Customer Name";
myTextCol.Width = 250;
myDataGridTableStyle1.GridColumnStyles.Add(myTextCol);
// Create new ColumnStyle objects
DataGridColumnStyle cOrderDate = new DataGridTextBoxColumn();
cOrderDate.MappingName = "OrderDate";
cOrderDate.HeaderText = "Order Date";
cOrderDate.Width = 100;
// Use a PropertyDescriptor to create a formatted column.
PropertyDescriptorCollection myPropertyDescriptorCollection = BindingContext
[myDataSet, "Customers.custToOrders"].GetItemProperties();
// Create a formatted column using a PropertyDescriptor.
DataGridColumnStyle csOrderAmount =
new DataGridTextBoxColumn(myPropertyDescriptorCollection["OrderAmount"], "c", true);
csOrderAmount.MappingName = "OrderAmount";
csOrderAmount.HeaderText = "Total";
csOrderAmount.Width = 100;
// Add the DataGridTableStyle instances to the GridTableStylesCollection.
myDataGrid.TableStyles.Add(myDataGridTableStyle1);
}
private void GridLineColorChanged_Handler(object sender,EventArgs e)
{
MessageBox.Show("GridLineColor Changed", "DataGridTableStyle");
}
[C++]
private:
void AddCustomDataTableStyle() {
myDataGridTableStyle1 = new DataGridTableStyle();
// EventHandlers
myDataGridTableStyle1->GridLineColorChanged +=
new System::EventHandler(this, &DataGridTableStyle_Sample::GridLineColorChanged_Handler);
myDataGridTableStyle1->MappingName = S"Customers";
// Set other properties.
myDataGridTableStyle1->AlternatingBackColor =
System::Drawing::Color::Gold;
myDataGridTableStyle1->BackColor = System::Drawing::Color::White;
myDataGridTableStyle1->GridLineStyle =
System::Windows::Forms::DataGridLineStyle::Solid;
myDataGridTableStyle1->GridLineColor=Color::Red;
// Set the HeaderText and Width properties.
DataGridColumnStyle* myBoolCol = new DataGridBoolColumn();
myBoolCol->MappingName = S"Current";
myBoolCol->HeaderText = S"IsCurrent Customer";
myBoolCol->Width = 150;
myDataGridTableStyle1->GridColumnStyles->Add(myBoolCol);
// Add a second column style.
DataGridColumnStyle* myTextCol = new DataGridTextBoxColumn();
myTextCol->MappingName = S"custName";
myTextCol->HeaderText = S"Customer Name";
myTextCol->Width = 250;
myDataGridTableStyle1->GridColumnStyles->Add(myTextCol);
// Create new ColumnStyle objects
DataGridColumnStyle* cOrderDate = new DataGridTextBoxColumn();
cOrderDate->MappingName = S"OrderDate";
cOrderDate->HeaderText = S"Order Date";
cOrderDate->Width = 100;
// Use a PropertyDescriptor to create a formatted column.
PropertyDescriptorCollection* myPropertyDescriptorCollection =
BindingContext->get_Item(myDataSet,
S"Customers::custToOrders")->GetItemProperties();
// Create a formatted column using a PropertyDescriptor.
DataGridColumnStyle* csOrderAmount =
new DataGridTextBoxColumn(
myPropertyDescriptorCollection->Item[S"OrderAmount"], S"c", true);
csOrderAmount->MappingName = S"OrderAmount";
csOrderAmount->HeaderText = S"Total";
csOrderAmount->Width = 100;
// Add the DataGridTableStyle instances to the GridTableStylesCollection.
myDataGrid->TableStyles->Add(myDataGridTableStyle1);
}
void GridLineColorChanged_Handler(Object* /*sender*/, EventArgs* /*e*/) {
MessageBox::Show(S"GridLineColor Changed", S"DataGridTableStyle");
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
DataGridTableStyle クラス | DataGridTableStyle メンバ | System.Windows.Forms 名前空間