我试图先将文本,图像和pdf文档粘贴到剪贴板,然后再粘贴到whatsapp文本框控件。
1)对于文本。
Clipboard.SetText(message);
Ctrl + v pastes the text into the whatsapp textbox.
2)对于图片
var imagePath =“ E:\ Downloads_SSD \ goodmorning.jpg”;
Clipboard.SetImage(Image.FromFile(@imagePath));
Ctrl + v pastes the Image into whatsapp.
3)对于文档。
StringCollection paths = new StringCollection();
paths.Add(@"E:\Downloads_SSD\Hatred-in-the-belly_-Politics-behind-the-appropriation-of-Dr-Ambedkars-writings.pdf");
Clipboard.SetFileDropList(paths);
Ctrl + v在复制到文件夹时有效,但在复制到whatsapp消息文本框中时无效。
在使用pdf文档的情况下如何使它工作。