Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This article provides a high-level overview of what's new with Windows Forms (WinForms) in .NET 11 Preview 4. For detailed information, see Release announcements. Use the release announcements to get an overview of the entire .NET 11 release. The rest of this article highlights the most important changes to Windows Forms.
.NET 11 Preview 4 was released in May 2026.
Release announcements
Each release announcement provides detailed information about Windows Forms changes for .NET 11:
Bug fixes
GetDataObject() returns an
IDataObjectthat can contain bitmap data placed on the clipboard, and GetImage() retrieves the bitmap image from that data object. GetImage() also retrieves the image directly from the clipboard. GetImage() now retrieves images through the typed clipboard pipeline by callingTryGetData<Image>(DataFormats.Bitmap, autoConvert: true, ...)and returnsnullwhen it can't retrieve an image.The following code now round-trips bitmap images when
bitmapis an existing Bitmap and you retrieve the image through the returned data object:// Round-trips again on .NET 11 Preview 4 Clipboard.SetImage(bitmap); Image? image = Clipboard.GetDataObject()?.GetImage();
.NET Desktop feedback