gman
gman
[`TextBox.PlaceholderText`](https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.textbox.placeholdertext) is available in .NET Core 3.0+/.NET 5.0+. This helpfully [hardcodes `SystemColors.GrayText`](https://github.com/dotnet/winforms/blob/62ebdb4b0d5cc7e163b8dc9331dc196e576bf162/src/System.Windows.Forms/src/System/Windows/Forms/Controls/TextBox/TextBox.cs#L910) so doesn't help us. **Fun fact:** it appears in .NET 4.8 `SysColors` are used, which I understand to...
Took a first stab at this. Still need to add support for dropdowns, and test. 72b508e006d1439de2a23b4800d36eeb4b9255f7
Attempted fix https://github.com/BlueMystical/Dark-Mode-Forms/pull/122. **Before** **After**
> What is weird is that all places that change the scroll value are clamped between the minimum and maximum. So even with some hardware value, it would return either...
Yes, I reversed the min and max intentionally to show how `Clamp` would behave when `min` > `max`. `max` > `min` is an unverified assumption; `Clamp` doesn't do anything to...
I'm also interested in improving how DPI scaling is handled. +1 "low priority". Not familiar with `AutoScaleMode`. My desktop screens are 1440p; I have mobile (Windows) devices with a high...
I had a look and your memory is right `AutoScaleMode` is set to `Font` in most cases. I've skimmed through the docs a few times but I don't have the...
This can be fixed by updating the problematic code to be C# 14.0 compliant, or specifying C# `13.0` in the project files instead of `latest`. Raising as I'm not sure...
Great, thanks for the quick fix. > I had an update queued and just updated to that version and I do not have the problem. Not sure how things that...