### .NET version 10.0.100-rc.1.25451.107 ### Did it work in .NET Framework? No ### Did it work in any of the earlier releases of .NET Core or .NET 5+? N/A ### Issue description When dark mode is enabled, the tab page titles doesn't render correctly when `TabControl.SizeMode = Fixed`: <img width="802" height="482" alt="Image" src="https://github.com/user-attachments/assets/0c1bcbbf-54e5-40ff-b50c-320236d094d3" /> If you minimize or resize the window, it will be displayed correctly (if `TabControl.Dock = Fill`):  In classic mode works as expected: <img width="802" height="482" alt="Image" src="https://github.com/user-attachments/assets/9d4abd4d-dc0d-49bc-b219-d99c9bb8db11" /> And since TabControl didn't support Dark Mode in .NET 9, works as expected: <img width="802" height="482" alt="Image" src="https://github.com/user-attachments/assets/318003c6-5ea1-4d09-ac94-3274d371817c" /> ### Steps to reproduce 1. Create a new Windows Forms App 2. Set the dark mode in **Program.cs** ```csharp Application.SetColorMode(SystemColorMode.Dark); ``` 3. Add a new TabControl to the **Form1** 4. Set `tabControl1.SizeMode` to `Fixed` via the Designer. 5. Set `tabControl1.Dock` to `Fill` via the Designer (optional).