該範例很簡易,在 CellFormatting 內把 DataGridViewCellFormattingEventArgs.ColumnIndex 往 TextBox 內塞資料而已,當 Form 一啟動會觸發,Code 如下
namespace CellFormatingVisible
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
textBox1.Text += e.ColumnIndex.ToString() + Environment.NewLine;
}
}
}
實際執行,有五個欄位 把 Column3 隱藏起來,ColumnIndex 2 就沒有抓到
沒有留言:
張貼留言