2012年10月30日 星期二

DataGridView資料列交錯顏色

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 private void RowColor(DataGridView dgv)
{
    if (dgv.Rows.Count != 0)
    {
       for (int i = 0; i < dgv.Rows.Count; i++)
      {
        if ((i % 2) == 1)
          {
            dgv.Rows[i].DefaultCellStyle.BackColor = System.Drawing.Color.Snow;
          }
         else
          {
             dgv.Rows[i].DefaultCellStyle.BackColor = System.Drawing.Color.LightBlue;
          }
        }
      }
}

Visual Studio JS intellisense 失效解決方式

  試了好久,發現到工具>選項>IntelliCode js項目設定啟用,重新開啟VS就正常了! 後來發現是TypeScript3.2版有問題停用,使用4.3版的TypeScript即可