在 Xamarin.Mac 中将图像复制到剪贴板
Copy an Image to Clipboard in Xamarin.Mac
Clipboard.SetImage(图像)在 Xamarin.Mac 中的 System.Windows.Forms 与 C# 的等效项是什么?
您正在 NSPasteboard 上寻找 WriteObjects
方法:
var image = someNSImage;
NSPasteboard.GeneralPasteboard.ClearContents();
NSPasteboard.GeneralPasteboard.WriteObjects(new NSImage[] { image });
Clipboard.SetImage(图像)在 Xamarin.Mac 中的 System.Windows.Forms 与 C# 的等效项是什么?
您正在 NSPasteboard 上寻找 WriteObjects
方法:
var image = someNSImage;
NSPasteboard.GeneralPasteboard.ClearContents();
NSPasteboard.GeneralPasteboard.WriteObjects(new NSImage[] { image });