DataGridViewButtonColumn btn = new DataGridViewButtonColumn();
dataGridView1.Columns.Add(btn);
我使用的WinForms應用程序,在這裏這樣我添加兩個按鈕,但我想這兩個按鈕應該是唯一的單柱的地方。
DataGridViewButtonColumn btn = new DataGridViewButtonColumn();
dataGridView1.Columns.Add(btn);
我使用的WinForms應用程序,在這裏這樣我添加兩個按鈕,但我想這兩個按鈕應該是唯一的單柱的地方。
您需要創建一個自定義的DataGridView列。
這裏有一篇文章,可以幫助: http://www.devx.com/codemag/Article/35186
謝謝您的迴應sir.I創建了自定義colomn,並且我添加了兩個按鈕,但那些顯示在單獨的列中,但我需要它們在一列中。我該怎麼做? – tiru
謝謝你的迴應sir.I創建了自定義的colomn,我添加了兩個按鈕,但那些顯示在單獨的列中,但我需要它們在一列中。我該怎麼做? – tiru
請參閱此處的「DataGridViewRadioButtonColumn」示例。我認爲這就是你想要的。 http://msdn.microsoft.com/en-us/library/aa730882%28v=vs.80%29.aspx – CharithJ