-
Notifications
You must be signed in to change notification settings - Fork 999
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The PropertyGrid displays properties of selected object incorrectly with Net 5.0 Windows app (Core) #3919
Comments
Must be fixed in rc1. |
Please try the latest nightly RC2 build: https://github.com/dotnet/installer |
|
Thank you for the super fast reply and thank you for working on it. If you tell me the 5.0.5 has the fix and will be released in days, I will wait and upgrade. Thanks! |
5.0.5 will be contain fix, but I am afraid that it will be release approximately in one month (unless it will be forced). |
.NET Core Version:
.NET SDK 5.0.100-preview.7.20417.9
Have you experienced this same bug with .NET Framework?:
No
Problem description:
The PropertyGrid displays properties of selected object incorrectly in Net 5.0 app. But display correctly with Net 4.5.2 or Net Core 3.1 version. The used VS version is 16.8.0 Preview 2.1.
Sample code:
private void Form1_Load(object sender, EventArgs e)
{
propertyGrid1.SelectedObject = new Font(DefaultFont.FontFamily, 15);
propertyGrid1.Refresh();
}
Result:
Expected behavior:
The PropertyGrid in Net 5.0 app display all properties of selected object.
Minimal repro:
Run attached app:
TestPropertyGrid.zip
Observe:
PropertyGrid display properties of selected object.
The text was updated successfully, but these errors were encountered: