1

visitdate我正在获取数据并存储在数据表中以在datatgridview中显示它,如何制作数据表的第二列link type?像这样的东西

DataGridViewLinkColumn linkcol = new DataGridViewLinkColumn();
this.dataGridViewVisits.Columns[1].DefaultCellStyle = linkcol;

下面是我在 datagridview 中显示数据的代码

cmd1 = new OleDbCommand("Select VisitNo,VisitDate,remark from Patient_Visit_Details WHERE Patient_ID=" + pid, con);
            dt = new DataTable();
            adp1 = new OleDbDataAdapter(cmd1);
            adp1.Fill(dt);
            this.dataGridViewVisits.DataSource = dt;
            DataGridViewLinkColumn linkcol = new DataGridViewLinkColumn();
4

4 回答 4

5

在将 DataTable(dt) 设置为 DataGridView 的数据源后添加此代码。

foreach (DataGridViewRow row in dataGridViewVisits.Rows)
            {
                DataGridViewLinkCell linkCell = new DataGridViewLinkCell();
                linkCell.Value = row.Cells[1].Value;
                row.Cells[1] = linkCell;
            }

它肯定会工作.. :)

于 2013-10-17T10:49:57.900 回答
0

如下处理DataBindingCompletedatagridView 的事件。

  private void dataGridView1_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e)
        {
            foreach (DataGridViewRow r in dataGridView1.Rows)
            {
                r.Cells[1] = new DataGridViewLinkCell();
            }
        }
于 2013-10-17T10:50:14.573 回答
0

对于 Vb.Net 极客...

For Each typeCell As DataGridViewRow In FlxInvTransaction.Rows
    Dim linkCell As New DataGridViewLinkCell
    linkCell.Value = typeCell.Cells(2).Value
    typeCell.Cells(2) = linkCell
Next
于 2020-04-09T10:27:29.337 回答
-1

你好,

您只需要使用智能导航在 GridView 控件中创建 HyperLink 列并设置如下值...

 <asp:HyperLinkField DataNavigateUrlFields="VisitDate"
 DataTextField="VisitDate"
 DataNavigateUrlFormatString="Default3.aspx?VisitNo={0}&visitDt={1}" />

谢谢你,维沙尔·帕特尔

于 2013-10-17T10:10:14.907 回答