-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Problem with WPF's Slider style (and a few thoughts on porting DX11 rendering engine to Core3) #521
Comments
Thanks for the feedback, it is really great to hear that your migration to .NET Core was smooth! Is the bug above .NET Core specific? (i.e. It does not happen on .NET Framework.) |
Thanks for confirmation @ab4d! |
It is correctly rendered in .Net Framework 4.8, too. And it is NOT correctly rendered in .Net Core 3.0 with DPI scale, either. |
Here's the origin of this problem. double viewportSize = Math.Max(0.0, ViewportSize);
// If viewport is NaN, compute thumb's size based on its desired size,
// otherwise compute the thumb base on the viewport and extent properties
if (double.IsNaN(viewportSize))
{
ComputeSliderLengths(arrangeSize, isVertical, out decreaseButtonLength, out thumbLength, out increaseButtonLength);
}
else
{
// Don't arrange if there's not enough content or the track is too small
if (!ComputeScrollBarLengths(arrangeSize, viewportSize, isVertical, out decreaseButtonLength, out thumbLength, out increaseButtonLength))
{
return arrangeSize;
}
} The UPDATE: Replace decompiled code with the one from Reference Source. |
FYI @tannergooding - fallout from some of our alignments in Math area ... |
@KodamaSakuno thanks for root causing it! |
Correct. This was updated to be IEEE 754:2008 compliant and to match the behavior defined by the C/C++ language standards in However, it is worth noting that IEEE 754:2019 (which is currently in draft form) looks to be changing this slightly. Namely, they are removing
Once the IEEE 754 draft is officially published, there will likely be proposals going up to implement the new recommended operations; which would involve exposing the new
|
@karelz I got it with a decompiler. UPDATE: I replaced it with the one from Reference Source. |
I've opened https://github.com/dotnet/corefx/issues/36925 proposing we partially revert the behavior of Ultimately, this would mean we keep the change that considers |
This should be unblocked now, once WPF can consume a new coreclr build. |
@jongfeel if you follow the links, you can see that the fix is in Math in dotnet/coreclr#24039, commit dotnet/coreclr@c5b2e71. It did not get into Preview 4, but it should be part of Preview 5. |
This issue has been verified fixed in Preview6. Both by the change made in coreclr and by a change in WPF to remove the dependency on Math.Max/Min NaN behavior. wpf/src/Microsoft.DotNet.Wpf/src/PresentationFramework/System/Windows/Controls/Primitives/Track.cs Line 486 in 3366153
|
Issue Title
WPF's Slider control is not correctly rendered - probably because of a problem with its style.
General
If the following xaml is used to define the slider:
<Slider Minimum="0" Maximum="5" Value="4" IsSnapToTickEnabled="True" TickFrequency="1" TickPlacement="BottomRight" Width="100" HorizontalAlignment="Left" VerticalAlignment="Top" />
Then the shown slider is cut on the right side and does not align with the ticks (the same happens when setting TickPlacement to Both):
This happens on a screen without any DPI scale (I was not able to try it on high DPI screen). This issue exists from the preview1 version.
Otherwise, I would like to congratulate you on a great job! I have ported my DirectX 11 rendering engine (Ab3d.DXEngine) and WPF 3D toolkit (Ab3d.PowerToys) to .Net Core 3 and they work without any problems from Preview1. Except changing the csproj files there were no changes in the code needed. The code is quite complex and uses SharpDX to call DirectX 11 API and it runs without any problems. I also tested the WPF 3D part and this also runs very well. One of the first things that I did, was to check the performance. I have expected a slight performance improvement, but just recompiling the code for .Net Core 3 brings no performance benefits to my rendering engine. Anyway, in the future, I plan to use new options like Slice and SIMD vectors and this should have more impact.
The text was updated successfully, but these errors were encountered: