.NET version
.NET 11.0.100-rc.1.26411.119
Did it work in .NET Framework?
Not tested/verified
Did it work in any of the earlier releases of .NET Core or .NET 5+?
This is a new feature Dark Mode: #11857
Issue description
The ToolTip is not in dark mode for ErrorProvider control after enabled SystemColorMode.Dark
Steps to reproduce
- Create a .NET winforms project with TextBox & ErrorProvider controls
- Add below code section in the Form1_Load event
errorProvider1.SetError(textBox1, "This is an error message.");
- Set app under Dark mode in program.cs file
Application.SetColorMode(SystemColorMode.Dark);
- Build & run the project, and then focus on the errorProvider icon to observe the ToolTip message
.NET version
.NET 11.0.100-rc.1.26411.119
Did it work in .NET Framework?
Not tested/verified
Did it work in any of the earlier releases of .NET Core or .NET 5+?
This is a new feature Dark Mode: #11857
Issue description
The ToolTip is not in dark mode for ErrorProvider control after enabled SystemColorMode.Dark
Steps to reproduce
errorProvider1.SetError(textBox1, "This is an error message.");Application.SetColorMode(SystemColorMode.Dark);