C#实现WinForm下DataGridView控件的拷贝和粘贴
2021-05-02 21:26
【向DataGridView控件粘贴数据】
这个过程会比上面的复杂,思路:从剪贴板环境中获取已复制内容,假定都是表格数据,因此先分成若干行,然后每行在分成若干字段,最后执行DataGridView.Row.Add()方法来添加记录。代码如下:
{
try
{
// 获取剪切板的内容,并按行分割
string pasteText = Clipboard.GetText();
if ( string.IsNullOrEmpty( pasteText ) )
return;
string [ ] lines = pasteText.Split( new char [ ] { ‘ ‘, ‘ ‘ } );
foreach ( string line in lines )
{
if ( string.IsNullOrEmpty( line.Trim() ) )
continue;
// 按 Tab 分割数据
string [ ] vals = line.Split( ‘ ‘ );
p_Data.Rows.Add( vals );
}
}
catch
{
// 不处理
}
}
下面一个问题是何时调用如上代码,可以为DataGridView创建一个右键菜单来实现,这里我展示一个通过判断键入”Ctrl+V”时来调用。代码如下:
public void DataGridViewEnablePaste ( DataGridView p_Data )
{
if ( p_Data == null )
return;
p_Data.KeyDown += new KeyEventHandler( p_Data_KeyDown );
}
public void p_Data_KeyDown ( object sender, KeyEventArgs e )
{
if ( Control.ModifierKeys == Keys.Control && e.KeyCode == Keys.V )
{
if ( sender != null && sender.GetType() == typeof( DataGridView ) )
// 调用上面的粘贴代码
DataGirdViewCellPaste( ( DataGridView ) sender );
}
}
文章标题:C#实现WinForm下DataGridView控件的拷贝和粘贴
文章链接:http://soscw.com/index.php/essay/81496.html