gpt4 book ai didi

c# - Clipboard.GetImage() 返回 null

转载 作者:行者123 更新时间:2023-11-30 14:27:31 25 4
gpt4 key购买 nike

我有一个 DataGridView,其中包含一个 Image 列和一些文本列。我有一个非常简单的处理程序,允许用户从单元格中复制文本或图像并将图像和文本粘贴到其中。复制/粘贴在文本上工作正常,但粘贴在图像上不起作用。 (注意:如果我粘贴从另一个应用程序(如画图)放置在剪贴板上的图像,则它可以正常工作)

如果我在 Clipboard.SetImage() 之后立即调用 Clipboard.GetImage() 它工作正常,这让我相信它可能是范围问题或者 Clipboard 正在抓取一个引用而不是图像中的底层字节。我必须将原始图像字节放在共享位置吗?我检查了 MSDN definition for GetImage以确保我做得正确。

    private void dataGridView_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.V && e.Modifiers == Keys.Control)
{
if (Clipboard.ContainsImage())
{
Image img = Clipboard.GetImage(); // always returns null

if (cell.ColumnIndex == _imageCol)
cell.Value = img;
}

if (Clipboard.ContainsText())
{
if (cell.ColumnIndex != _imageCol)
cell.Value = Clipboard.GetText(); // always works
}
}

if (e.KeyCode == Keys.C && e.Modifiers == Keys.Control)
{
DataGridViewCell cell = dataGridView1.SelectedCells[0];

if (cell.ColumnIndex == _imageCol)
{
Clipboard.SetImage((Image)cell.Value);
Image img2 = Clipboard.GetImage(); // successfully returns the Image
}
else
Clipboard.SetText((string)cell.Value);
}
}

最佳答案

您没有指望的是 DataGridView 实现了复制/粘贴。使用与您使用的相同的快捷键,Ctrl+C 和 Ctrl+V。所以看起来它在您将图像放在剪贴板上后就可以工作,但 DGV 也会这样做并覆盖剪贴板内容。不幸的是,它不复制图像,只复制文本。图像列的空字符串。

你必须告诉它你处理了击键:

    private void dataGridView1_KeyDown(object sender, KeyEventArgs e) {
if (e.KeyCode == Keys.V && e.Modifiers == Keys.Control) {
// etc...
e.Handled = true;
}

if (e.KeyCode == Keys.C && e.Modifiers == Keys.Control) {
// etc...
e.Handled = true;
}
}

关于c# - Clipboard.GetImage() 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32461845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com