.NET version
11.0.0-alpha.1.26062.101
Did it work in .NET Framework?
Not tested/verified
Did it work in any of the earlier releases of .NET Core or .NET 5+?
No, the issue also can reproduce on .NET 10.0 & .NET 9.0
Issue description
The ListView cannot display the items when setting the Enable as false in Dark mode
Steps to reproduce
- Create a .NET Winforms project with a ListView control
- Add some items for the listView1
- Set the Enable as false for the listView1
- Set app under Dark mode in program.cs file
Application.SetColorMode(SystemColorMode.Dark);
- Build & run the application