Skip to content

Commit b1a9921

Browse files
Update release notes for Preview 7: add missing WPF entry, fix formatting in ASP.NET Core, SDK, and Windows Forms notes
1 parent be34a0f commit b1a9921

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

.github/prompts/createprs-for-preview.prompt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ Here are the files you need to do this one at a time for:
3939
- sdk.md
4040
- visualbasic.md
4141
- winforms.md
42-
- wpf.md
42+
- wpf.md

.github/prompts/scaffoldpreview.prompt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ ASP.NET Core updates in .NET 10:
2121

2222
Something about the feature
2323

24-
```
24+
```

release-notes/10.0/preview/preview7/aspnetcore.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ else { /* ... */ }
120120
```
121121

122122
To sign in with a passkey, use `SignInManager.PasskeySignInAsync()`:
123+
123124
```csharp
124125
// 'credentialJson' is the JSON-serialized result from `navigator.credentials.get()`.
125126
var result = await signInManager.PasskeySignInAsync(credentialJson);

release-notes/10.0/preview/preview7/sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ platform-specific .NET Tools work this way, you only need to add one thing to yo
3333

3434
This RuntimeIdentifier is at the 'root' of our platform-compatibility checking, and since it declares support for, well, _any_ platform, the tool that we package for you will be the most compatible kind of tool - a framework-dependent, platform-agnostic .NET dll, which requires a compatible .NET Runtime in order to execute. When you perform a `dotnet pack` to create your tool, you'll see a new package for the `any` RuntimeIdentifier appear alongside the other platform-specific packages and the top-level manifest package.
3535

36-
The eagle-eyed among you will note that this is the exact same kind of tool that you would make in .NET 9 and earlier, but now it fits into the overall goal of enabling platform-specific .NET Tools!
36+
The eagle-eyed among you will note that this is the exact same kind of tool that you would make in .NET 9 and earlier, but now it fits into the overall goal of enabling platform-specific .NET Tools!

release-notes/10.0/preview/preview7/winforms.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
# WindowsWe've alsWe've also improved the rendering of special buttons within the PropertyGrid for dark mode. Previously, the ellipsis button used to open an editor and the drop-down button for ComboBox-type editors were not rendering well in dark mode. Now, these elements have dedicated renderers ensuring they appear consistently and at the same quality as the rest of the UI in dark mode.
1+
# Windows Forms in .NET 10 Preview 7 - Release Notes
22

3-
Everything mentioned above pertains specifically to dark mode improvements in Preview 7. Other functionalities remain unchanged in this release.ddressed the RichTextBox background issue in dark mode. Previously, a disabled RichTextBox would show a white background. Now it correctly displays the dark mode background. However, there's a known limitation: if the RichTextBox has formatted content, only the first few visible lines will appear correctly, and the formatting might not fully apply in the disabled state.
3+
Here's a summary of what's new in Windows Forms in this preview release:
44

5-
As a temporary workaround, if maintaining full formatting in a disabled RichTextBox is essential, we recommend setting it to read-only and manually disabling selections. This helps achieve a better preview until a more permanent fix is available. Note that this limitation is due to the underlying RichTextBox control in the common controls library, and a full fix may require a future version update.
5+
- [ComboBox Dark Mode Rendering Fix](#combobox-dark-mode-rendering-fix)
6+
- [RichTextBox Dark Mode Improvement and Known Limitation](#richtextbox-dark-mode-improvement-and-known-limitation)
7+
- [PropertyGrid Dark Mode Enhancements](#propertygrid-dark-mode-enhancements)
68

7-
## PropertyGrid Dark Mode Enhancementss in .NET 10 Preview 7 - Release Notes
9+
Windows Forms updates in .NET 10:
810

9-
Here's a summary of what's new in Windows Forms in this preview release:
11+
- [What's new in Windows Forms](https://learn.microsoft.com/dotnet/desktop/winforms/whats-new/) documentation
1012

1113
## ComboBox Dark Mode Rendering Fix
12-
1314
In this update, we've resolved an issue where a disabled ComboBox displayed a white background instead of the appropriate dark mode color scheme. Now, regardless of whether the ComboBox is in editable, list, or simple mode, its constituent controls will correctly render with the proper dark mode background when disabled.
14-
15+
1516
## RichTextBox Dark Mode Improvement and Known Limitation
1617
We’ve also addressed the RichTextBox background issue in dark mode. Previously, a disabled RichTextBox would show a white background. Now it correctly displays the dark mode background. However, there's a known limitation: if the RichTextBox has formatted content, only the first few visible lines will appear correctly, and the formatting might not fully apply in the disabled state.
1718

0 commit comments

Comments
 (0)