http://www.donews.net/blueoxygen/archive/2004/04/17/12864.aspx

解决方案 »

  1.   

    建议使用: Develope Express
      

  2.   

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstechart/html/vbtchTopQuestionsAboutASPNETDataGridServerControl.asp
      

  3.   

    好像讲的都是B/S的。C/S的较少。
      

  4.   

    http://www.syncfusion.com/FAQ/WinForms/
      

  5.   

    选择里面的datagrid,你想要知道的都有
      

  6.   

    在 csdn的首页上的   右上角的地方   输入   datagrid   然后选择 "文档标题"  搜索  就有全部的 datagrid 的讲解的了     当然也可以用msdn
      

  7.   

    控制行选择,单击鼠标选一行:
    private void dataGrid1_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e)
    {
    if (e.Button==System.Windows.Forms.MouseButtons.Right )
    return;
    Point pt = new Point(e.X,e.Y);
    DataGrid.HitTestInfo hit = dataGrid1.HitTest(pt);
    if(hit.Type == DataGrid.HitTestType.Cell) 
    {
    dataGrid1.Select(hit.Row); 
    }
    }
      

  8.   

    在CSDN里找找吧,应该有很多的
      

  9.   

    http://www.syncfusion.com/FAQ/WinForms/