1、复制
public void copy_Click(object sender, EventArgs e)
{
Clipboard.SetDataObject(this.dataGridView2.GetClipboardContent());
MessageBox.Show("已复制到剪贴板!");
}
2、粘贴
public void paste_Click(object sender, EventArgs e)
{
dataGridView2.AllowUserToAddRows = true;
try
{
// 获取剪切板的内容,并按行分割
string pasteText = Clipboard.GetText();
if (string.IsNullOrEmpty(pasteText))
return;
int tnum = 0;
int nnum = 0;
//获得当前剪贴板内容的行、列数
for (int i = 0; i < pasteText.Length; i++)
{
if (pasteText.Substring(i, 1) == "\t")
{
tnum++;
}
if (pasteText.Substring(i, 1) == "\n")
{
nnum++;
}
}
Object[,] data;
//粘贴板上的数据来自于EXCEL时,每行末都有\n,在DATAGRIDVIEW内复制时,最后一行末没有\n
if (pasteText.Substring(pasteText.Length - 1, 1) == "\n")
{
nnum = nnum - 1;
}
tnum = tnum / (nnum + 1);
data = new object[nnum + 1, tnum + 1];//定义一个二维数组
String rowstr;
rowstr = "";
//MessageBox.Show(pasteText.IndexOf("B").ToString());
//对数组赋值
for (int i = 0; i < (nnum + 1); i++)
{
for (int colIndex = 0; colIndex < (tnum + 1); colIndex++)
{
//一行中的最后一列
if (colIndex == tnum && pasteText.IndexOf("\r") != -1)
{
rowstr = pasteText.Substring(0, pasteText.IndexOf("\r"));
}
//最后一行的最后一列
if (colIndex == tnum && pasteText.IndexOf("\r") == -1)
{
rowstr = pasteText.Substring(0);
}
//其他行列
if (colIndex != tnum)
{
rowstr = pasteText.Substring(0, pasteText.IndexOf("\t"));
pasteText = pasteText.Substring(pasteText.IndexOf("\t") + 1);
}
data[i, colIndex] = rowstr;
}
//截取下一行数据
pasteText = pasteText.Substring(pasteText.IndexOf("\n") + 1);
}
//获取当前选中单元格所在的列序号
int curntindex = dataGridView2.CurrentRow.Cells.IndexOf(dataGridView1.CurrentCell);
//获取获取当前选中单元格所在的行序号
int rowindex = dataGridView2.CurrentRow.Index;
//MessageBox.Show(curntindex.ToString ());
for (int j = 0; j < (nnum + 1); j++)
{
for (int colIndex = 0; colIndex < (tnum + 1); colIndex++)
{
dataGridView2.Rows[j + rowindex].Cells[colIndex + curntindex].Value = data[j, colIndex];
}
}
}
catch
{
MessageBox.Show("粘贴区域大小不一致");
return;
}
}
5 个解决方案
#1
网上拿来不修改?出错也不debug?
#2
写了 catch,你就丧失了调试能力了。
开发时要调试,开发时尽量让bug 尽早跳出来,不能 try...catch。
开发时要调试,开发时尽量让bug 尽早跳出来,不能 try...catch。
#3
不好意思了,因为我才学习几天,要完成这个任务,软件也不太会用。
dataGridView2.Rows[j + rowindex].Cells[colIndex + curntindex].Value = data[j, colIndex];
这句话提示:索引超出范围。必须为非负值并小于集合大小。
参数名: index
dataGridView2.Rows[j + rowindex].Cells[colIndex + curntindex].Value = data[j, colIndex];
这句话提示:索引超出范围。必须为非负值并小于集合大小。
参数名: index
#4
典型数组越界错误,断点数数行列数目对不对
#5
喔,谢谢,有一列是隐藏的,那要怎么办呢?
#1
网上拿来不修改?出错也不debug?
#2
写了 catch,你就丧失了调试能力了。
开发时要调试,开发时尽量让bug 尽早跳出来,不能 try...catch。
开发时要调试,开发时尽量让bug 尽早跳出来,不能 try...catch。
#3
不好意思了,因为我才学习几天,要完成这个任务,软件也不太会用。
dataGridView2.Rows[j + rowindex].Cells[colIndex + curntindex].Value = data[j, colIndex];
这句话提示:索引超出范围。必须为非负值并小于集合大小。
参数名: index
dataGridView2.Rows[j + rowindex].Cells[colIndex + curntindex].Value = data[j, colIndex];
这句话提示:索引超出范围。必须为非负值并小于集合大小。
参数名: index
#4
典型数组越界错误,断点数数行列数目对不对
#5
喔,谢谢,有一列是隐藏的,那要怎么办呢?