Skip to content
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

Setting RangeSelector to 100-100 with max value to 1 crashes DWM. #366

Open
3 of 24 tasks
RaphProductions opened this issue Mar 10, 2024 · 3 comments · May be fixed by #576
Open
3 of 24 tasks

Setting RangeSelector to 100-100 with max value to 1 crashes DWM. #366

RaphProductions opened this issue Mar 10, 2024 · 3 comments · May be fixed by #576
Labels
bug Something isn't working Priority-1
Milestone

Comments

@RaphProductions
Copy link

RaphProductions commented Mar 10, 2024

Describe the bug

When some bizarre values are set in a RangeSelector, the DWM crashes.

Steps to reproduce

Set a RangeSelector to 100-100, and set the max value to 1.

Expected behavior

I don't really know what to expect else. Prevent the control from rendering?

Screenshots

No response

Code Platform

  • UWP
  • WinAppSDK / WinUI 3
  • Web Assembly (WASM)
  • Android
  • iOS
  • MacOS
  • Linux / GTK

Windows Build Number

  • Windows 10 1809 (Build 17763)
  • Windows 10 1903 (Build 18362)
  • Windows 10 1909 (Build 18363)
  • Windows 10 2004 (Build 19041)
  • Windows 10 20H2 (Build 19042)
  • Windows 10 21H1 (Build 19043)
  • Windows 10 21H2 (Build 19044)
  • Windows 10 22H2 (Build 19045)
  • Windows 11 21H2 (Build 22000)
  • Other (specify)

Other Windows Build number

Windows 11 Canary (Germanium) 26063

App minimum and target SDK version

  • Windows 10, version 1809 (Build 17763)
  • Windows 10, version 1903 (Build 18362)
  • Windows 10, version 1909 (Build 18363)
  • Windows 10, version 2004 (Build 19041)
  • Windows 10, version 2104 (Build 20348)
  • Windows 11, version 22H2 (Build 22000)
  • Other (specify)

Other SDK version

Unknown. I use the WCT Gallery.

Visual Studio Version

2022

Visual Studio Build Number

17.9.1

Device form factor

Desktop

Additional context

I'm using the WCT gallery. Happens on the first example of RangeSelector.

Help us help you

No, I'm unable to contribute a solution.

@sylveon
Copy link

sylveon commented Dec 1, 2024

Can repro. I'd argue min == max should be an invalid state here (i.e. the control should throw if someone tries to do that)

@Lamparter
Copy link

Lamparter commented Dec 1, 2024

        if (Minimum == Maximum)
        {
-           Maximum += Epsilon;
+           throw new ArgumentException("Maximum and Minimum values cannot be equal.");
        }

@Lamparter Lamparter linked a pull request Dec 1, 2024 that will close this issue
4 tasks
@Arlodotexe Arlodotexe moved this to 📋 Backlog in Toolkit 8.x Dec 1, 2024
@Arlodotexe Arlodotexe moved this from 📋 Backlog to 🏗 In progress in Toolkit 8.x Dec 2, 2024
@michael-hawker michael-hawker added bug Something isn't working Priority-1 labels Dec 2, 2024
@michael-hawker michael-hawker added this to the 8.2 milestone Dec 2, 2024
@michael-hawker
Copy link
Member

@Arlodotexe not sure how we missed triaging this originally, but we definitely should understand why the DWM crashes in this state, and file an underlying issue with the platform to fix, while avoiding that scenario in our control.

As called out in the PR discussion here: #576 (comment)

I believe this should be valid input based on how Slider behaves, it accepts both min/max as equal and just locks the value.

It may not make sense, but in general most XAML controls don't throw exceptions, as those will take down apps at runtime.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working Priority-1
Projects
Status: 🏗 In progress
Development

Successfully merging a pull request may close this issue.

4 participants