我必须将dataGridView1
显示为
SN Name Subject Topic Subtopic
1. Mr.SK Jha Physics Optics Diffraction
Interference
Mechanics MKS
Electromagnetic
2. Mr.XYZ Chemistry Inorganic Ethene
这里的主题与subject_id相同,可能有许多未指定为固定的数据。
我见过很多reference,但它会将GridViewRow
视为错误。
我正在使用Visual Studio 2013,框架4.5
答案 0 :(得分:2)
最简单的方法是使数据源成为数据表
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
DataTable dt = new DataTable();
dt.Columns.Add("SN", typeof(string));
dt.Columns.Add("Name", typeof(string));
dt.Columns.Add("Subject", typeof(string));
dt.Columns.Add("Topic", typeof(string));
dt.Columns.Add("Subtopic", typeof(string));
dt.Rows.Add(new object[] { "1.", "Mr.SK Jha", "Physics", "Optics", "Diffraction Interference" });
dt.Rows.Add(new object[] { "", "", "", "Mechanics", "MKS" });
dt.Rows.Add(new object[] { "", "", "", "Electromagnetic" });
dt.Rows.Add(new object[] { 2, "Mr.XYZ", "Chemistry", "Inorganic", "Ethene" });
dataGridView1.DataSource = dt;
}
}
}
答案 1 :(得分:1)
我假设您希望DGV看起来像一个分组表,并且重复值被抑制。
这是将重复单元格绘制为透明的例程:
static void PaintGrouped(DataGridView dgv)
{
if (dgv.Rows.Count < 2) return;
if (dgv.Columns.Count < 2) return;
for (int row = 1; row < dgv.Rows.Count; row++)
{
bool suppressing = dgv[0, row].Value.Equals(dgv[0, row - 1].Value);
for (int col = 1; col < dgv.Columns.Count; col++)
{
bool equal = dgv[col, row].Value.Equals(dgv[col, row - 1].Value);
suppressing = suppressing && equal;
dgv[col, row].Style.ForeColor = supressing ? Color.Transparent : Color.Black;
}
}
}
请注意,所有值仍然存在并可以更改或复制。任何更改后,您应该重新应用例程!另请注意,我决定永远不要压制第一列。