|
■No49189 (らーじ さん) に返信 > タイトルの通り、DataGridViewのヘッダーをコンボボックスにすることは可能でしょうか。
直接は変更できませんが、ComboBox を重ねることで、それっぽく見せることはできるかと思います。
'Form1_Load DataGridView1.Controls.Add(ComboBox1)
'DataGridView1_ColumnWidthChanged 'DataGridView1_Scroll Dim colIndex As Integer = 0 Dim rect As Rectangle = DataGridView1.GetCellDisplayRectangle(colIndex, -1, True) ComboBox1.SetBounds(rect.X, rect.Y, rect.Width, rect.Height)
|