private void siGrids_CellContentClick(object sender, DataGridViewCellEventArgs e)
 {
     if (e.ColumnIndex == colDataset.Index)
     {
         var link = DataLinkUtils.GetDatasetLink(siGrids.Rows[e.RowIndex].Cells[e.ColumnIndex].Value as string);
         Process.Start(link);
     }
     else if (e.ColumnIndex == colSampleLink.Index)
     {
         var link = DataLinkUtils.GetDataLink(siGrids.Rows[e.RowIndex].Cells[e.ColumnIndex].Value as string);
         Process.Start(link);
     }
 }