Skip to content

[Testing] Feature Matrix UITest Cases for VisualStateManager#34146

Merged
kubaflo merged 26 commits intodotnet:inflight/currentfrom
LogishaSelvarajSF4525:logi-vsm-feature
Mar 5, 2026
Merged

[Testing] Feature Matrix UITest Cases for VisualStateManager#34146
kubaflo merged 26 commits intodotnet:inflight/currentfrom
LogishaSelvarajSF4525:logi-vsm-feature

Conversation

@LogishaSelvarajSF4525
Copy link
Copy Markdown
Contributor

@LogishaSelvarajSF4525 LogishaSelvarajSF4525 commented Feb 20, 2026

Note

Are you waiting for the changes in this PR to be merged?
It would be very helpful if you could test the resulting artifacts from this PR and let us know in a comment if this change resolves your issue. Thank you!

This pull request adds new VisualStateManager feature matrix pages for Button, CheckBox CollectionView, Entry, Label, Slider and Switch controls, providing comprehensive demos and test cases for visual state management. These additions enhance the test suite by enabling users to interactively explore and verify VisualStateManager behaviors such as Normal, Selected, PointerOver, Disabled, Focused, and Pressed across different controls

New VisualStateManager Feature Matrix Functionality

  • Added a new entry for “VisualStateManager Feature Matrix” to the Core Views gallery, allowing easy navigation to the new demo pages from the main test app UI.
  • Implemented dedicated feature matrix pages covering the following controls:
  • Entry – Demonstrates visual states such as Normal, Focused, and Completed with interactive input validation and styling updates.
  • Button – Showcases Normal, Pressed, PointerOver, Disabled, and Focused states with dynamic transitions.
  • CollectionView – Demonstrates item-level states such as Normal, Selected, Disable and PointerOver with interactive selection behavior.
  • CheckBox – Covers Normal, Checked, Unchecked, and Disabled states with dynamic styling.
  • Label – Validates visual state transitions including Normal and Disabled scenarios.
  • Slider – Demonstrates Normal, Dragging, and Disabled states with value-based interactions.
  • Switch – Showcases On, Off, and Disabled states with state-based styling updates.
  • Added a supporting VSMCollectionViewViewModel, providing sample data and logic for testing VisualStateManager behavior within CollectionView scenarios.

UI and Feature Coverage Enhancements

  • Added interactive controls and state-triggered styling to validate VisualStateManager behavior across Entry, Button, CollectionView, CheckBox, Label, Slider, and Switch.
  • Enabled users to dynamically interact with controls to verify state transitions such as:
  • Normal, Selected, PointerOver, Disabled, Focused, Pressed, Checked, Unchecked, On, Off, Completed, and Dragging.
  • Provided structured demonstrations to ensure consistent verification of visual state behavior across different control types and platforms.

Code-Behind and Logic
Created dedicated XAML and code-behind implementations for each VisualStateManager feature page, including interactive handlers and state-driven style logic.
Implemented a view model for CollectionView scenarios to supply sample items and support visual state testing under realistic data-binding conditions.

Issues Identified

Screen.Recording.2026-02-20.at.2.44.13.AM.mov

@dotnet-policy-service dotnet-policy-service bot added community ✨ Community Contribution partner/syncfusion Issues / PR's with Syncfusion collaboration labels Feb 20, 2026
@Ahamed-Ali Ahamed-Ali added the area-testing Unit tests, device tests label Feb 20, 2026
@sheiksyedm sheiksyedm marked this pull request as ready for review February 20, 2026 09:20
Copilot AI review requested due to automatic review settings February 20, 2026 09:20
@sheiksyedm
Copy link
Copy Markdown
Contributor

/azp run maui-pr-uitests

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

@sheiksyedm
Copy link
Copy Markdown
Contributor

/azp run maui-pr-uitests

@sheiksyedm sheiksyedm added this to the .NET 10 SR5 milestone Feb 21, 2026
@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

Copy link
Copy Markdown
Contributor

@sheiksyedm sheiksyedm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note

Are you waiting for the changes in this PR to be merged?
It would be very helpful if you could test the resulting artifacts from this PR and let us know in a comment if this change resolves your issue. Thank you!


🤖 AI Test Quality Review — PR #34146

VSM Feature Matrix UITest Cases reviewed for coverage gaps and structural improvements.


🔴 Critical Issues (2)

1. All Button Tests Are Disabled on Android

Every Button test is wrapped in #if TEST_FAILS_ON_ANDROID (ref: #19289), meaning there is zero VSM coverage for Button on Android.

Tests like InitialState, Disable, and Reset are pure programmatic state changes that don't require press/release interaction. Only tests like PressedAndReleased, DisableWhilePressedAndReleased, and PressedAndReleasedWhileDisabled are actually blocked by the linked issue.

Suggestion: Move only the press-interaction tests under #if TEST_FAILS_ON_ANDROID. Programmatic-state tests should run on Android.


2. CollectionView Tests 16, 19, 20, 21 Are Dead Code — Disabled on ALL Platforms

#if TEST_FAILS_ON_ANDROID && TEST_FAILS_ON_IOS && TEST_FAILS_ON_CATALYST && TEST_FAILS_ON_WINDOWS
[Test, Order(16)]
public void VerifyVSM_CollectionView_DisableAndEnableWhileSelected() { ... }
// Same for Orders 19, 20, 21

These 4 tests require all four platform flags simultaneously, so they never compile on any platform. Referencing #20615.

Suggestion: Replace with [Ignore("Blocked by #20615")] so they appear as skipped in the test report and still communicate intent, or remove them until the underlying bug is fixed.


🟠 Structural Issues (3)

3. Tests Are Not Independently Runnable — Navigation Only in Order(1)

In every test class, Order(1) taps the gallery landing page button to navigate to the control's sub-page (e.g., App.Tap("VSMButton")). Tests with Order ≥ 2 do not re-navigate — they assume they are already on the sub-page.

If any individual test (Order ≥ 2) runs in isolation (common in CI with filtered test runs), it will immediately fail because it tries to interact with elements that don't exist on the landing page.

Suggestion: Add a [SetUp] method to handle navigation and reset, ensuring every test starts from a clean, known state:

[SetUp]
public void SetUp()
{
    App.WaitForElement("VSMButtonButton");
    App.Tap("VSMButtonButton");
    App.WaitForElement("ButtonStateLabel");
}

This applies to all 7 test classes.


4. Switch Tests 2 and 3 Have Implicit Sequential Dependency

VerifyVSM_Switch_On (Order 2) leaves the switch in On state. VerifyVSM_Switch_Off (Order 3) immediately taps the switch expecting it to go Off. If test 2 fails or tests run in different order, test 3 produces an incorrect result.

Suggestion: Add App.Tap("SwitchReset") at the start of test 3 to ensure a clean starting state.


5. GalleryPageName Constant Duplicated Across All 7 Classes

Every class independently defines:

public const string VisualStateManagerButtonFeatureTests = "VisualStateManager Feature Matrix";

The same string "VisualStateManager Feature Matrix" is duplicated 7 times.

Suggestion: Extract to a shared constant class (e.g., VSMFeatureMatrixTestConstants) to avoid typos and simplify future renames.


🟡 Consistency Issues (4)

6. Missing VerifyScreenshot() in Most Complex State-Transition Tests

Multi-step "compound" tests — the most valuable for catching visual regressions — often omit VerifyScreenshot():

Test Screenshot?
VerifyVSM_Button_PressedAndReleased
VerifyVSM_Button_DisableWhilePressedAndReleased
VerifyVSM_Slider_DisableWhileFocused
VerifyVSM_Switch_OnWhileDisableAndEnable
VerifyVSM_CollectionView_DisableWhileSelected

Suggestion: Each compound state-transition test should include a VerifyScreenshot() at the final verified state. These tests exist precisely because VSM visual output is what matters most.


7. CheckBox: Inconsistent State Names for the Same Conceptual State

  • VerifyVSM_CheckBox_InitialState (Order 1) expects: "State: Unchecked"
  • VerifyVSM_CheckBox_Reset (Order 3) expects: "State: Normal"

Both represent the default unchecked, enabled state — but the HostApp returns different strings depending on how you arrived there. This should be unified or clearly documented.


8. VerifyVSM_Label_SelectedToDisabledToNormal — Misleading Test Name

The test name implies the final state is Normal, but the actual final assertion is:

Assert.That(labelText, Is.EqualTo("State: Disabled")); // NOT Normal

The test verifies that tapping a selectable label while disabled does not change state.

Suggestion: Rename to VerifyVSM_Label_CannotSelectWhileDisabled or similar.


9. Entry: Inconsistent Keyboard Dismissal

Tests 6, 9, and 15–18 explicitly dismiss the keyboard via App.DismissKeyboard(), but tests like 11 (FocusedAndUnfocused) tap VSMEntry and then tap NormalEntryButton without dismissal. On Android/iOS, the keyboard may cover the button and cause a flaky failure.

Suggestion: Consistently check and dismiss the keyboard after any App.Tap("VSMEntry") call across all Entry tests.


🔵 Missing State Coverage (4)

10. PointerOver State Not Tested for Any Control

The PR description lists PointerOver as a supported VSM state for Button. It's also relevant for CollectionView items and Label. PointerOver can only be exercised on Mac/Windows.

Suggestion: Add tests guarded with #if MACCATALYST || WINDOWS using hover/pointer-over interactions.


11. Entry: Missing Completed/Returning State Test

The Entry control can expose a VSM state when the user submits via the keyboard return key. If the HostApp defines this state, a test invoking App.PressEnter() should be added.


12. Slider: Missing Dragging State Test

The Slider control can enter a Dragging state when the thumb is actively dragged. If the XAML style defines a Dragging state, a test using coordinate-based drag (App.DragAndDrop()) should be added to verify it.


13. No VisualStateManager UITest Category — Cannot Run All VSM Tests at Once

All 7 test classes use their respective control categories (Button, CheckBox, CollectionView, etc.). There is no way to filter and run all VSM Feature Matrix tests together using a single category filter.

Suggestion: Either add [Category(UITestCategories.VisualStateManager)] as a secondary attribute, or switch all classes to a shared VSM category, with control-level categories applied per test method.


Review performed by GitHub Copilot — automated test quality analysis of PR #34146

@sheiksyedm
Copy link
Copy Markdown
Contributor

/azp run maui-pr-uitests

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

@LogishaSelvarajSF4525
Copy link
Copy Markdown
Contributor Author

Note

Are you waiting for the changes in this PR to be merged? It would be very helpful if you could test the resulting artifacts from this PR and let us know in a comment if this change resolves your issue. Thank you!

🤖 AI Test Quality Review — PR #34146

VSM Feature Matrix UITest Cases reviewed for coverage gaps and structural improvements.

🔴 Critical Issues (2)

1. All Button Tests Are Disabled on Android

Every Button test is wrapped in #if TEST_FAILS_ON_ANDROID (ref: #19289), meaning there is zero VSM coverage for Button on Android.

Tests like InitialState, Disable, and Reset are pure programmatic state changes that don't require press/release interaction. Only tests like PressedAndReleased, DisableWhilePressedAndReleased, and PressedAndReleasedWhileDisabled are actually blocked by the linked issue.

Suggestion: Move only the press-interaction tests under #if TEST_FAILS_ON_ANDROID. Programmatic-state tests should run on Android.

2. CollectionView Tests 16, 19, 20, 21 Are Dead Code — Disabled on ALL Platforms

#if TEST_FAILS_ON_ANDROID && TEST_FAILS_ON_IOS && TEST_FAILS_ON_CATALYST && TEST_FAILS_ON_WINDOWS
[Test, Order(16)]
public void VerifyVSM_CollectionView_DisableAndEnableWhileSelected() { ... }
// Same for Orders 19, 20, 21

These 4 tests require all four platform flags simultaneously, so they never compile on any platform. Referencing #20615.

Suggestion: Replace with [Ignore("Blocked by #20615")] so they appear as skipped in the test report and still communicate intent, or remove them until the underlying bug is fixed.

🟠 Structural Issues (3)

3. Tests Are Not Independently Runnable — Navigation Only in Order(1)

In every test class, Order(1) taps the gallery landing page button to navigate to the control's sub-page (e.g., App.Tap("VSMButton")). Tests with Order ≥ 2 do not re-navigate — they assume they are already on the sub-page.

If any individual test (Order ≥ 2) runs in isolation (common in CI with filtered test runs), it will immediately fail because it tries to interact with elements that don't exist on the landing page.

Suggestion: Add a [SetUp] method to handle navigation and reset, ensuring every test starts from a clean, known state:

[SetUp]
public void SetUp()
{
    App.WaitForElement("VSMButtonButton");
    App.Tap("VSMButtonButton");
    App.WaitForElement("ButtonStateLabel");
}

This applies to all 7 test classes.

4. Switch Tests 2 and 3 Have Implicit Sequential Dependency

VerifyVSM_Switch_On (Order 2) leaves the switch in On state. VerifyVSM_Switch_Off (Order 3) immediately taps the switch expecting it to go Off. If test 2 fails or tests run in different order, test 3 produces an incorrect result.

Suggestion: Add App.Tap("SwitchReset") at the start of test 3 to ensure a clean starting state.

5. GalleryPageName Constant Duplicated Across All 7 Classes

Every class independently defines:

public const string VisualStateManagerButtonFeatureTests = "VisualStateManager Feature Matrix";

The same string "VisualStateManager Feature Matrix" is duplicated 7 times.

Suggestion: Extract to a shared constant class (e.g., VSMFeatureMatrixTestConstants) to avoid typos and simplify future renames.

🟡 Consistency Issues (4)

6. Missing VerifyScreenshot() in Most Complex State-Transition Tests

Multi-step "compound" tests — the most valuable for catching visual regressions — often omit VerifyScreenshot():

Test Screenshot?
VerifyVSM_Button_PressedAndReleased
VerifyVSM_Button_DisableWhilePressedAndReleased
VerifyVSM_Slider_DisableWhileFocused
VerifyVSM_Switch_OnWhileDisableAndEnable
VerifyVSM_CollectionView_DisableWhileSelected
Suggestion: Each compound state-transition test should include a VerifyScreenshot() at the final verified state. These tests exist precisely because VSM visual output is what matters most.

7. CheckBox: Inconsistent State Names for the Same Conceptual State

  • VerifyVSM_CheckBox_InitialState (Order 1) expects: "State: Unchecked"
  • VerifyVSM_CheckBox_Reset (Order 3) expects: "State: Normal"

Both represent the default unchecked, enabled state — but the HostApp returns different strings depending on how you arrived there. This should be unified or clearly documented.

8. VerifyVSM_Label_SelectedToDisabledToNormal — Misleading Test Name

The test name implies the final state is Normal, but the actual final assertion is:

Assert.That(labelText, Is.EqualTo("State: Disabled")); // NOT Normal

The test verifies that tapping a selectable label while disabled does not change state.

Suggestion: Rename to VerifyVSM_Label_CannotSelectWhileDisabled or similar.

9. Entry: Inconsistent Keyboard Dismissal

Tests 6, 9, and 15–18 explicitly dismiss the keyboard via App.DismissKeyboard(), but tests like 11 (FocusedAndUnfocused) tap VSMEntry and then tap NormalEntryButton without dismissal. On Android/iOS, the keyboard may cover the button and cause a flaky failure.

Suggestion: Consistently check and dismiss the keyboard after any App.Tap("VSMEntry") call across all Entry tests.

🔵 Missing State Coverage (4)

10. PointerOver State Not Tested for Any Control

The PR description lists PointerOver as a supported VSM state for Button. It's also relevant for CollectionView items and Label. PointerOver can only be exercised on Mac/Windows.

Suggestion: Add tests guarded with #if MACCATALYST || WINDOWS using hover/pointer-over interactions.

11. Entry: Missing Completed/Returning State Test

The Entry control can expose a VSM state when the user submits via the keyboard return key. If the HostApp defines this state, a test invoking App.PressEnter() should be added.

12. Slider: Missing Dragging State Test

The Slider control can enter a Dragging state when the thumb is actively dragged. If the XAML style defines a Dragging state, a test using coordinate-based drag (App.DragAndDrop()) should be added to verify it.

13. No VisualStateManager UITest Category — Cannot Run All VSM Tests at Once

All 7 test classes use their respective control categories (Button, CheckBox, CollectionView, etc.). There is no way to filter and run all VSM Feature Matrix tests together using a single category filter.

Suggestion: Either add [Category(UITestCategories.VisualStateManager)] as a secondary attribute, or switch all classes to a shared VSM category, with control-level categories applied per test method.

Review performed by GitHub Copilot — automated test quality analysis of PR #34146

I have addressed the review concerns.

  • Enabled the applicable test cases and added the required snapshots for VSM Button on Android.
  • Added test cases for dragging the Slider using drag coordinates and covered the Completed state for VSM Entry with the related test cases.
  • Updated CollectionView tests (16, 19, 20, 21), which were dead code and disabled on all platforms, by marking them with [Ignore("Fails on all platforms")].
  • Updated the UI categories for the respective VisualStateManager controls.

@PureWeen PureWeen modified the milestones: .NET 10 SR5, .NET 10 SR6 Mar 3, 2026
@kubaflo kubaflo changed the base branch from main to inflight/current March 5, 2026 00:14
@kubaflo kubaflo merged commit 859fbe9 into dotnet:inflight/current Mar 5, 2026
1 of 2 checks passed
PureWeen pushed a commit that referenced this pull request Mar 11, 2026
> [!NOTE]
> Are you waiting for the changes in this PR to be merged?
> It would be very helpful if you could [test the resulting
artifacts](https://github.com/dotnet/maui/wiki/Testing-PR-Builds) from
this PR and let us know in a comment if this change resolves your issue.
Thank you!

This pull request adds new VisualStateManager feature matrix pages for
Button, CheckBox CollectionView, Entry, Label, Slider and Switch
controls, providing comprehensive demos and test cases for visual state
management. These additions enhance the test suite by enabling users to
interactively explore and verify VisualStateManager behaviors such as
Normal, Selected, PointerOver, Disabled, Focused, and Pressed across
different controls

**New VisualStateManager Feature Matrix Functionality**
- Added a new entry for “VisualStateManager Feature Matrix” to the Core
Views gallery, allowing easy navigation to the new demo pages from the
main test app UI.
- Implemented dedicated feature matrix pages covering the following
controls:
- Entry – Demonstrates visual states such as Normal, Focused, and
Completed with interactive input validation and styling updates.
- Button – Showcases Normal, Pressed, PointerOver, Disabled, and Focused
states with dynamic transitions.
- CollectionView – Demonstrates item-level states such as Normal,
Selected, Disable and PointerOver with interactive selection behavior.
- CheckBox – Covers Normal, Checked, Unchecked, and Disabled states with
dynamic styling.
- Label – Validates visual state transitions including Normal and
Disabled scenarios.
- Slider – Demonstrates Normal, Dragging, and Disabled states with
value-based interactions.
- Switch – Showcases On, Off, and Disabled states with state-based
styling updates.
- Added a supporting VSMCollectionViewViewModel, providing sample data
and logic for testing VisualStateManager behavior within CollectionView
scenarios.

**UI and Feature Coverage Enhancements**
- Added interactive controls and state-triggered styling to validate
VisualStateManager behavior across Entry, Button, CollectionView,
CheckBox, Label, Slider, and Switch.
- Enabled users to dynamically interact with controls to verify state
transitions such as:
- Normal, Selected, PointerOver, Disabled, Focused, Pressed, Checked,
Unchecked, On, Off, Completed, and Dragging.
- Provided structured demonstrations to ensure consistent verification
of visual state behavior across different control types and platforms.

**Code-Behind and Logic**
Created dedicated XAML and code-behind implementations for each
VisualStateManager feature page, including interactive handlers and
state-driven style logic.
Implemented a view model for CollectionView scenarios to supply sample
items and support visual state testing under realistic data-binding
conditions.



https://github.com/user-attachments/assets/7845278f-5328-44f8-a1cd-f21b6c57c166

---------

Co-authored-by: Jakub Florkowski <42434498+kubaflo@users.noreply.github.com>
github-actions bot pushed a commit that referenced this pull request Mar 11, 2026
> [!NOTE]
> Are you waiting for the changes in this PR to be merged?
> It would be very helpful if you could [test the resulting
artifacts](https://github.com/dotnet/maui/wiki/Testing-PR-Builds) from
this PR and let us know in a comment if this change resolves your issue.
Thank you!

This pull request adds new VisualStateManager feature matrix pages for
Button, CheckBox CollectionView, Entry, Label, Slider and Switch
controls, providing comprehensive demos and test cases for visual state
management. These additions enhance the test suite by enabling users to
interactively explore and verify VisualStateManager behaviors such as
Normal, Selected, PointerOver, Disabled, Focused, and Pressed across
different controls

**New VisualStateManager Feature Matrix Functionality**
- Added a new entry for “VisualStateManager Feature Matrix” to the Core
Views gallery, allowing easy navigation to the new demo pages from the
main test app UI.
- Implemented dedicated feature matrix pages covering the following
controls:
- Entry – Demonstrates visual states such as Normal, Focused, and
Completed with interactive input validation and styling updates.
- Button – Showcases Normal, Pressed, PointerOver, Disabled, and Focused
states with dynamic transitions.
- CollectionView – Demonstrates item-level states such as Normal,
Selected, Disable and PointerOver with interactive selection behavior.
- CheckBox – Covers Normal, Checked, Unchecked, and Disabled states with
dynamic styling.
- Label – Validates visual state transitions including Normal and
Disabled scenarios.
- Slider – Demonstrates Normal, Dragging, and Disabled states with
value-based interactions.
- Switch – Showcases On, Off, and Disabled states with state-based
styling updates.
- Added a supporting VSMCollectionViewViewModel, providing sample data
and logic for testing VisualStateManager behavior within CollectionView
scenarios.

**UI and Feature Coverage Enhancements**
- Added interactive controls and state-triggered styling to validate
VisualStateManager behavior across Entry, Button, CollectionView,
CheckBox, Label, Slider, and Switch.
- Enabled users to dynamically interact with controls to verify state
transitions such as:
- Normal, Selected, PointerOver, Disabled, Focused, Pressed, Checked,
Unchecked, On, Off, Completed, and Dragging.
- Provided structured demonstrations to ensure consistent verification
of visual state behavior across different control types and platforms.

**Code-Behind and Logic**
Created dedicated XAML and code-behind implementations for each
VisualStateManager feature page, including interactive handlers and
state-driven style logic.
Implemented a view model for CollectionView scenarios to supply sample
items and support visual state testing under realistic data-binding
conditions.



https://github.com/user-attachments/assets/7845278f-5328-44f8-a1cd-f21b6c57c166

---------

Co-authored-by: Jakub Florkowski <42434498+kubaflo@users.noreply.github.com>
@PureWeen PureWeen mentioned this pull request Mar 17, 2026
PureWeen pushed a commit that referenced this pull request Mar 19, 2026
> [!NOTE]
> Are you waiting for the changes in this PR to be merged?
> It would be very helpful if you could [test the resulting
artifacts](https://github.com/dotnet/maui/wiki/Testing-PR-Builds) from
this PR and let us know in a comment if this change resolves your issue.
Thank you!

This pull request adds new VisualStateManager feature matrix pages for
Button, CheckBox CollectionView, Entry, Label, Slider and Switch
controls, providing comprehensive demos and test cases for visual state
management. These additions enhance the test suite by enabling users to
interactively explore and verify VisualStateManager behaviors such as
Normal, Selected, PointerOver, Disabled, Focused, and Pressed across
different controls

**New VisualStateManager Feature Matrix Functionality**
- Added a new entry for “VisualStateManager Feature Matrix” to the Core
Views gallery, allowing easy navigation to the new demo pages from the
main test app UI.
- Implemented dedicated feature matrix pages covering the following
controls:
- Entry – Demonstrates visual states such as Normal, Focused, and
Completed with interactive input validation and styling updates.
- Button – Showcases Normal, Pressed, PointerOver, Disabled, and Focused
states with dynamic transitions.
- CollectionView – Demonstrates item-level states such as Normal,
Selected, Disable and PointerOver with interactive selection behavior.
- CheckBox – Covers Normal, Checked, Unchecked, and Disabled states with
dynamic styling.
- Label – Validates visual state transitions including Normal and
Disabled scenarios.
- Slider – Demonstrates Normal, Dragging, and Disabled states with
value-based interactions.
- Switch – Showcases On, Off, and Disabled states with state-based
styling updates.
- Added a supporting VSMCollectionViewViewModel, providing sample data
and logic for testing VisualStateManager behavior within CollectionView
scenarios.

**UI and Feature Coverage Enhancements**
- Added interactive controls and state-triggered styling to validate
VisualStateManager behavior across Entry, Button, CollectionView,
CheckBox, Label, Slider, and Switch.
- Enabled users to dynamically interact with controls to verify state
transitions such as:
- Normal, Selected, PointerOver, Disabled, Focused, Pressed, Checked,
Unchecked, On, Off, Completed, and Dragging.
- Provided structured demonstrations to ensure consistent verification
of visual state behavior across different control types and platforms.

**Code-Behind and Logic**
Created dedicated XAML and code-behind implementations for each
VisualStateManager feature page, including interactive handlers and
state-driven style logic.
Implemented a view model for CollectionView scenarios to supply sample
items and support visual state testing under realistic data-binding
conditions.



https://github.com/user-attachments/assets/7845278f-5328-44f8-a1cd-f21b6c57c166

---------

Co-authored-by: Jakub Florkowski <42434498+kubaflo@users.noreply.github.com>
github-actions bot pushed a commit that referenced this pull request Mar 20, 2026
> [!NOTE]
> Are you waiting for the changes in this PR to be merged?
> It would be very helpful if you could [test the resulting
artifacts](https://github.com/dotnet/maui/wiki/Testing-PR-Builds) from
this PR and let us know in a comment if this change resolves your issue.
Thank you!

This pull request adds new VisualStateManager feature matrix pages for
Button, CheckBox CollectionView, Entry, Label, Slider and Switch
controls, providing comprehensive demos and test cases for visual state
management. These additions enhance the test suite by enabling users to
interactively explore and verify VisualStateManager behaviors such as
Normal, Selected, PointerOver, Disabled, Focused, and Pressed across
different controls

**New VisualStateManager Feature Matrix Functionality**
- Added a new entry for “VisualStateManager Feature Matrix” to the Core
Views gallery, allowing easy navigation to the new demo pages from the
main test app UI.
- Implemented dedicated feature matrix pages covering the following
controls:
- Entry – Demonstrates visual states such as Normal, Focused, and
Completed with interactive input validation and styling updates.
- Button – Showcases Normal, Pressed, PointerOver, Disabled, and Focused
states with dynamic transitions.
- CollectionView – Demonstrates item-level states such as Normal,
Selected, Disable and PointerOver with interactive selection behavior.
- CheckBox – Covers Normal, Checked, Unchecked, and Disabled states with
dynamic styling.
- Label – Validates visual state transitions including Normal and
Disabled scenarios.
- Slider – Demonstrates Normal, Dragging, and Disabled states with
value-based interactions.
- Switch – Showcases On, Off, and Disabled states with state-based
styling updates.
- Added a supporting VSMCollectionViewViewModel, providing sample data
and logic for testing VisualStateManager behavior within CollectionView
scenarios.

**UI and Feature Coverage Enhancements**
- Added interactive controls and state-triggered styling to validate
VisualStateManager behavior across Entry, Button, CollectionView,
CheckBox, Label, Slider, and Switch.
- Enabled users to dynamically interact with controls to verify state
transitions such as:
- Normal, Selected, PointerOver, Disabled, Focused, Pressed, Checked,
Unchecked, On, Off, Completed, and Dragging.
- Provided structured demonstrations to ensure consistent verification
of visual state behavior across different control types and platforms.

**Code-Behind and Logic**
Created dedicated XAML and code-behind implementations for each
VisualStateManager feature page, including interactive handlers and
state-driven style logic.
Implemented a view model for CollectionView scenarios to supply sample
items and support visual state testing under realistic data-binding
conditions.



https://github.com/user-attachments/assets/7845278f-5328-44f8-a1cd-f21b6c57c166

---------

Co-authored-by: Jakub Florkowski <42434498+kubaflo@users.noreply.github.com>
github-actions bot pushed a commit that referenced this pull request Mar 22, 2026
> [!NOTE]
> Are you waiting for the changes in this PR to be merged?
> It would be very helpful if you could [test the resulting
artifacts](https://github.com/dotnet/maui/wiki/Testing-PR-Builds) from
this PR and let us know in a comment if this change resolves your issue.
Thank you!

This pull request adds new VisualStateManager feature matrix pages for
Button, CheckBox CollectionView, Entry, Label, Slider and Switch
controls, providing comprehensive demos and test cases for visual state
management. These additions enhance the test suite by enabling users to
interactively explore and verify VisualStateManager behaviors such as
Normal, Selected, PointerOver, Disabled, Focused, and Pressed across
different controls

**New VisualStateManager Feature Matrix Functionality**
- Added a new entry for “VisualStateManager Feature Matrix” to the Core
Views gallery, allowing easy navigation to the new demo pages from the
main test app UI.
- Implemented dedicated feature matrix pages covering the following
controls:
- Entry – Demonstrates visual states such as Normal, Focused, and
Completed with interactive input validation and styling updates.
- Button – Showcases Normal, Pressed, PointerOver, Disabled, and Focused
states with dynamic transitions.
- CollectionView – Demonstrates item-level states such as Normal,
Selected, Disable and PointerOver with interactive selection behavior.
- CheckBox – Covers Normal, Checked, Unchecked, and Disabled states with
dynamic styling.
- Label – Validates visual state transitions including Normal and
Disabled scenarios.
- Slider – Demonstrates Normal, Dragging, and Disabled states with
value-based interactions.
- Switch – Showcases On, Off, and Disabled states with state-based
styling updates.
- Added a supporting VSMCollectionViewViewModel, providing sample data
and logic for testing VisualStateManager behavior within CollectionView
scenarios.

**UI and Feature Coverage Enhancements**
- Added interactive controls and state-triggered styling to validate
VisualStateManager behavior across Entry, Button, CollectionView,
CheckBox, Label, Slider, and Switch.
- Enabled users to dynamically interact with controls to verify state
transitions such as:
- Normal, Selected, PointerOver, Disabled, Focused, Pressed, Checked,
Unchecked, On, Off, Completed, and Dragging.
- Provided structured demonstrations to ensure consistent verification
of visual state behavior across different control types and platforms.

**Code-Behind and Logic**
Created dedicated XAML and code-behind implementations for each
VisualStateManager feature page, including interactive handlers and
state-driven style logic.
Implemented a view model for CollectionView scenarios to supply sample
items and support visual state testing under realistic data-binding
conditions.



https://github.com/user-attachments/assets/7845278f-5328-44f8-a1cd-f21b6c57c166

---------

Co-authored-by: Jakub Florkowski <42434498+kubaflo@users.noreply.github.com>
PureWeen added a commit that referenced this pull request Mar 24, 2026
## What's Coming

.NET MAUI inflight/candidate introduces significant improvements across
all platforms with focus on quality, performance, and developer
experience. This release includes 66 commits with various improvements,
bug fixes, and enhancements.


## Activityindicator
- [Android] Implemented material3 support for ActivityIndicator by
@Dhivya-SF4094 in #33481
  <details>
  <summary>🔧 Fixes</summary>

- [Implement material3 support for
ActivityIndicator](#33479)
  </details>

- [iOS] Fix: ActivityIndicator IsRunning ignores IsVisible when set to
true by @bhavanesh2001 in #28983
  <details>
  <summary>🔧 Fixes</summary>

- [[iOS] [ActivityIndicator] `IsRunning` ignores `IsVisible` when set to
`true`](#28968)
  </details>

## Button
- [iOS] Button RTL text and image overlap - fix by @kubaflo in
#29041

## Checkbox
- [iOS/MacCatalyst] Fix CheckBox foreground color not resetting when set
to null by @Ahamed-Ali in #34284
  <details>
  <summary>🔧 Fixes</summary>

- [[iOS] Color of the checkBox control is not properly worked on dynamic
scenarios](#34278)
  </details>

## CollectionView
- [iOS] Fix: CollectionView does not clear selection when SelectedItem
is set to null by @Tamilarasan-Paranthaman in
#30420
  <details>
  <summary>🔧 Fixes</summary>

- [CollectionView not being able to remove selected item highlight on
iOS](#30363)
- [[MAUI] Select items traces are
preserved](#26187)
  </details>

- [iOS] CV2 ItemsLayout update by @kubaflo in
#28675
  <details>
  <summary>🔧 Fixes</summary>

- [CollectionView CollectionViewHandler2 doesnt change ItemsLayout on
DataTrigger](#28656)
- [iOS CollectionView doesn't respect a change to ItemsLayout when using
Items2.CollectionViewHandler2](#31259)
  </details>

- [iOS][CV2] Fix CollectionView renders large empty space at bottom of
view by @devanathan-vaithiyanathan in
#31215
  <details>
  <summary>🔧 Fixes</summary>

- [[iOS] [MacCatalyst] CollectionView renders large empty space at
bottom of view](#17799)
- [[iOS/Mac] CollectionView2 EmptyView takes up large horizontal space
even when the content is
small](#33201)
  </details>

- [iOS] Fixed issue where group Header/Footer template was set to all
items when IsGrouped was true for an ObservableCollection by
@Tamilarasan-Paranthaman in #29144
  <details>
  <summary>🔧 Fixes</summary>

- [[iOS] Group Header/Footer Repeated for All Items When IsGrouped is
True for ObservableCollection in
CollectionView](#29141)
  </details>

- [Android] Fix CollectionView selection crash with HeaderTemplate by
@NirmalKumarYuvaraj in #34275
  <details>
  <summary>🔧 Fixes</summary>

- [[Bug] [Android] System.ArgumentOutOfRangeException: Index was out of
range. Must be non-negative and less than the size of the collection.
Parameter name: index](#34247)
  </details>

## DateTimePicker
- [iOS] Fix TimePicker AM/PM frequently changes when the app is closed
and reopened by @devanathan-vaithiyanathan in
#31066
  <details>
  <summary>🔧 Fixes</summary>

- [[iOS] TimePicker AM/PM frequently changes when the app is closed and
reopened](#30837)
- [Maui 10 iOS TimePicker Strange Characters in place of
AM/PM](#33722)
  </details>

- Android TimePicker ignores 24 hour system setting when using Format
Property - fix by @kubaflo in #28797
  <details>
  <summary>🔧 Fixes</summary>

- [Android TimePicker ignores 24 hour system setting when using Format
Property](#28784)
  </details>

## Drawing
- [iOS, Mac, Windows] GraphicsView: Fix Background/BackgroundColor not
updating by @NirmalKumarYuvaraj in
#31254
  <details>
  <summary>🔧 Fixes</summary>

- [[iOS, Mac, Windows] GraphicsView does not change the
Background/BackgroundColor](#31239)
  </details>

- [iOS] GraphicsView DrawString - fix by @kubaflo in
#26304
  <details>
  <summary>🔧 Fixes</summary>

- [DrawString not rendering in
iOS.](#24450)
- [GraphicsView DrawString not rendering in
iOS](#8486)
- [DrawString doesn't work on
maccatalyst](#4993)
  </details>

- [Android] - Fix Shadow Rendering For Transparent Fill, Stroke (Lines),
and Text on Shapes by @prakashKannanSf3972 in
#29528
  <details>
  <summary>🔧 Fixes</summary>

- [Ellipse Transparency Not Rendered When Drawing Arc Inside the Ellipse
Using GraphicsView on
Android](#29394)
  </details>

- Revert "[iOS, Mac, Windows] GraphicsView: Fix
Background/BackgroundColor not updating (#31254)" by @Ahamed-Ali via
@Copilot in #34508

## Entry
- [iOS 26] Fix Entry MaxLength not enforced due to new multi-range
delegate by @kubaflo in #32045
  <details>
  <summary>🔧 Fixes</summary>

- [iOS 26 - The MaxLength property value is not respected on an Entry
control.](#32016)
- [.NET MAUI Entry Maximum Length not working on iOS and
macOS](#33316)
  </details>

- [iOS] Fixed Entry with IsPassword toggling loses previously entered
text by @SubhikshaSf4851 in #30572
  <details>
  <summary>🔧 Fixes</summary>

- [Entry with IsPassword toggling loses previously entered text on iOS
when IsPassword is
re-enabled](#30085)
  </details>

## Essentials
- Fix for FilePicker PickMultipleAsync nullable reference type by
@SuthiYuvaraj in #33163
  <details>
  <summary>🔧 Fixes</summary>

- [FilePicker PickMultipleAsync nullable reference
type](#33114)
  </details>

- Replace deprecated NetworkReachability with NWPathMonitor on iOS/macOS
by @jfversluis via @Copilot in #32354
  <details>
  <summary>🔧 Fixes</summary>

- [NetworkReachability is obsolete on iOS/maccatalyst
17.4+](#32312)
- [Use NWPathMonitor on iOS for Essentials
Connectivity](#2574)
  </details>

## Essentials Connectivity
- Update Android Connectivity implementation to use modern APIs by
@jfversluis via @Copilot in #30348
  <details>
  <summary>🔧 Fixes</summary>

- [Update the Android Connectivity implementation to user modern
APIs](#30347)
  </details>

## Flyout
- [iOS] Fixed Flyout icon not updating when root page changes using
InsertPageBefore by @Vignesh-SF3580 in
#29924
  <details>
  <summary>🔧 Fixes</summary>

- [[iOS] Flyout icon not replaced by back button when root page is
changed using
InsertPageBefore](#29921)
  </details>

## Flyoutpage
- [iOS] Flyout Items Not Displayed in RightToLeft FlowDirection in
Landscape - fix by @kubaflo in #26762
  <details>
  <summary>🔧 Fixes</summary>

- [Flyout Items Not Displayed in RightToLeft FlowDirection on iOS in
Landscape Orientation and Hamburger Icon Positioned
Incorrectly](#26726)
  </details>

## Image
- [Android] Implemented Material3 support for Image by @Dhivya-SF4094 in
#33661
  <details>
  <summary>🔧 Fixes</summary>

- [Implement Material3 support for
Image](#33660)
  </details>

## Keyboard
- [iOS] Fix gap at top of view after rotating device while Entry
keyboard is visible by @praveenkumarkarunanithi in
#34328
  <details>
  <summary>🔧 Fixes</summary>

- [Focusing and entering texts on entry control causes a gap at the top
after rotating simulator.](#33407)
  </details>

## Label
- [Android] Support for images inside HTML label by @kubaflo in
#21679
  <details>
  <summary>🔧 Fixes</summary>

- [Label with HTML TextType does not display images on
Android](#21044)
  </details>

- [fix] ContentLabel Moved to a nested class to prevent CS0122 in
external source generators by @SubhikshaSf4851 in
#34514
  <details>
  <summary>🔧 Fixes</summary>

- [[MAUI] Building Maui App with sample content results CS0122
errors.](#34512)
  </details>

## Layout
- Optimize ordering of children in Flex layout by @symbiogenesis in
#21961

- [Android] Fix control size properties not available during Loaded
event by @Vignesh-SF3580 in #31590
  <details>
  <summary>🔧 Fixes</summary>

- [CollectionView on Android does not provide height, width, logical
children once loaded, works fine on
Windows](#14364)
- [Control's Loaded event invokes before calling its measure override
method.](#14160)
  </details>

## Mediapicker
- [iOS/Android] MediaPicker: Fix image orientation when RotateImage=true
by @michalpobuta in #33892
  <details>
  <summary>🔧 Fixes</summary>

- [MediaPicker.PickPhotosAsync does not preserve image
orientation](#32650)
  </details>

## Modal
- [Windows] Fix modal page keyboard focus not shifting to newly opened
modal by @jfversluis in #34212
  <details>
  <summary>🔧 Fixes</summary>

- [Keyboard focus does not shift to a newly opened modal page: Pressing
enter clicks the button on the page beneath the modal
page](#22938)
  </details>

## Navigation
- [iOS26] Apply view margins in title view by @kubaflo in
#32205
  <details>
  <summary>🔧 Fixes</summary>

- [NavigationPage TitleView iOS
26](#32200)
  </details>

- [iOS] System.NullReferenceException at
NavigationRenderer.SetStatusBarStyle() by @kubaflo in
#29564
  <details>
  <summary>🔧 Fixes</summary>

- [System.NullReferenceException at
NavigationRenderer.SetStatusBarStyle()](#29535)
  </details>

- [iOS 26] Fix back button color not applied for NavigationPage by
@Shalini-Ashokan in #34326
  <details>
  <summary>🔧 Fixes</summary>

- [[iOS] Color not applied to the Back button text or image on iOS
26](#33966)
  </details>

## Picker
- Fix Picker layout on Mac Catalyst 26+ by @kubaflo in
#33146
  <details>
  <summary>🔧 Fixes</summary>

- [[MacOS 26] Text on picker options are not centered on macOS
26.1](#33229)
  </details>

## Progressbar
- [Android] Implemented Material3 support for ProgressBar by
@SyedAbdulAzeemSF4852 in #33926
  <details>
  <summary>🔧 Fixes</summary>

- [Implement Material3 support for
Progressbar](#33925)
  </details>

## RadioButton
- [iOS, Mac] Fix for RadioButton TextColor for plain Content not working
by @HarishwaranVijayakumar in #31940
  <details>
  <summary>🔧 Fixes</summary>

- [RadioButton: TextColor for plain Content not working on
iOS](#18011)
  </details>

- [All Platforms] Fix RadioButton warning when ControlTemplate is set
with View content by @kubaflo in
#33839
  <details>
  <summary>🔧 Fixes</summary>

- [Seeking clarification on RadioButton + ControlTemplate + Content
documentation](#33829)
  </details>

- Visual state change for disabled RadioButton by @kubaflo in
#23471
  <details>
  <summary>🔧 Fixes</summary>

- [RadioButton disabled UI issue -
iOS](#18668)
  </details>

## SafeArea
- [Android] Fix for TabbedPage BottomNavigation BarBackgroundColor not
extending to system navigation bar by @praveenkumarkarunanithi in
#33428
  <details>
  <summary>🔧 Fixes</summary>

- [[Android] TabbedPage BottomNavigation BarBackgroundColor does not
extend to system navigation bar area in Edge-to-Edge
mode](#33344)
  </details>

## ScrollView
- [Android] ScrollView: Fix HorizontalScrollBarVisibility not updating
immediately at runtime by @SubhikshaSf4851 in
#33528
  <details>
  <summary>🔧 Fixes</summary>

- [Runtime Scrollbar visibility not updating correctly on Android and
macOS platforms.](#33400)
  </details>

- Fixed crash when calling ItemsView.ScrollTo on unloaded CollectionView
by @kubaflo in #25444
  <details>
  <summary>🔧 Fixes</summary>

- [App crashes when calling ItemsView.ScrollTo on unloaded
CollectionView](#23014)
  </details>

## Shell
- [Shell] Update logic for iOS large title display in ShellItemRenderer
by @kubaflo in #33246

- [iOS][Shell] Fix navigation lifecycle and back button for More tab (>5
tabs) by @kubaflo in #27932
  <details>
  <summary>🔧 Fixes</summary>

- [OnAppearing and OnNavigatedTo does not work when using extended
Tabbar (tabbar with more than 5 tabs) on
IOS.](#27799)
- [Shell.BackButtonBehavior does not work when using extended Tabbar
(tabbar with more than 5 tabs)on
IOS.](#27800)
- [Shell TabBar More button causes ViewModel command binding
disconnection on back
navigation](#30862)
- [Content page onappearing not firing if tabs are on the more tab on
IOS](#31166)
  </details>

- [iOS 26] Fix tab bar ghosting when navigating from modal to tabbed
Shell content by @SubhikshaSf4851 in
#34254
  <details>
  <summary>🔧 Fixes</summary>

- [[iOS] Tab bar ghosting issue on iOS 26 (liquid
glass)](#34143)
  </details>

- Fix for Shell tab visibility not updating when navigating back
multiple pages by @BagavathiPerumal in
#34403
  <details>
  <summary>🔧 Fixes</summary>

- [Changing Shell Tab Visibility when navigating back multiple pages
ignores Shell Tab
Visibility](#33351)
  </details>

- [iOS/Mac] Fixed OnBackButtonPressed not firing for Shell Navigation
Bar Button by @Dhivya-SF4094 in
#34401
  <details>
  <summary>🔧 Fixes</summary>

- [[iOS] OnBackButtonPressed not firing for Shell Navigation Bar
button](#34190)
  </details>

## Slider
- [iOS] Fix for Slider ThumbImageSource is not centered properly on iOS
26 by @HarishwaranVijayakumar in
#34019
  <details>
  <summary>🔧 Fixes</summary>

- [[iOS 26] Slider ThumbImageSource is not centered
properly](#33967)
  </details>

- [Android] Fix improper rendering of ThumbimageSource in Slider by
@NirmalKumarYuvaraj in #34064
  <details>
  <summary>🔧 Fixes</summary>

- [[Slider] MAUI Slider thumb image is big on
android](#13258)
  </details>

## Stepper
- [iOS] Fix Stepper layout overlap in landscape on iOS 26 by
@Vignesh-SF3580 in #34325
  <details>
  <summary>🔧 Fixes</summary>

- [[.NET10] D10 - Customize cursor position - Rotating simulator makes
the button and label
overlap](#34273)
  </details>

## SwipeView
- [iOS] SwipeView: Honor FontImageSource.Color in SwipeItem icon by
@kubaflo in #27389
  <details>
  <summary>🔧 Fixes</summary>

- [[iOS] SwipeView: SwipeItem.IconImageSource.FontImageSource color
value not honored](#27377)
  </details>

## Switch
- [Android] Fix Switch thumb shadow missing when ThumbColor is set by
@Shalini-Ashokan in #33960
  <details>
  <summary>🔧 Fixes</summary>

- [Android Switch Control Thumb
Shadow](#19676)
  </details>

## Toolbar
- [iOS/Mac Catalyst 26] Fix Shell.ForegroundColor not applied to
ToolbarItems by @SyedAbdulAzeemSF4852 in
#34085
  <details>
  <summary>🔧 Fixes</summary>

- [[iOS26] Shell.ForegroundColor is not applied to
ToolbarItems](#34083)
  </details>

- [Android] VoiceOver on Toolbar Item by @kubaflo in
#29596
  <details>
  <summary>🔧 Fixes</summary>

- [VoiceOver on Toolbar
Item](#29573)
- [SemanticProperties do not work on
ToolbarItems](#23623)
  </details>


<details>
<summary>🧪 Testing (11)</summary>

- [Testing] Additional Feature Matrix Test Cases for CollectionView by
@TamilarasanSF4853 in #32432
- [Testing] Feature Matrix UITest Cases for VisualStateManager by
@LogishaSelvarajSF4525 in #34146
- [Testing] Feature Matrix UITest Cases for Clip by @TamilarasanSF4853
in #34121
- [Testing] Feature matrix UITest Cases for Map Control by
@HarishKumarSF4517 in #31656
- [Testing] Feature matrix UITest Cases for Visual Transform Control by
@HarishKumarSF4517 in #32799
- [Testing] Feature Matrix UITest Cases for Shell Pages by
@NafeelaNazhir in #33945
- [Testing] Feature Matrix UITest Cases for Triggers by
@HarishKumarSF4517 in #34152
- [Testing] Refactoring Feature Matrix UITest Cases for CheckBox Control
by @LogishaSelvarajSF4525 in #34283
- Resolve UI test Build Sample failures - Candidate March 16 by
@Ahamed-Ali in #34442
- Fix the failures in the Candidate branch- March 16 by @Ahamed-Ali in
#34453
  <details>
  <summary>🔧 Fixes</summary>

  - [March 16th, Candidate](#34437)
  </details>
- Fixed the iOS 18.5 Candidate failures (March 16,2026) by @Ahamed-Ali
in #34593
  <details>
  <summary>🔧 Fixes</summary>

  - [March 16th, Candidate](#34437)
  </details>

</details>

<details>
<summary>📦 Other (2)</summary>

- Fixed candidate test failures caused by PR #33428. by @Ahamed-Ali in
#34515
  <details>
  <summary>🔧 Fixes</summary>

- [[.NET10] On Android, there's a big space at the top for I, M and N2 &
N3](#34509)
  </details>
- Revert "[iOS] Button RTL text and image overlap - fix (#29041)" in
b0497af

</details>

<details>
<summary>📝 Issue References</summary>

Fixes #2574, Fixes #4993, Fixes #8486, Fixes #13258, Fixes #14160, Fixes
#14364, Fixes #17799, Fixes #18011, Fixes #18668, Fixes #19676, Fixes
#21044, Fixes #22938, Fixes #23014, Fixes #23623, Fixes #24450, Fixes
#26187, Fixes #26726, Fixes #27377, Fixes #27799, Fixes #27800, Fixes
#28656, Fixes #28784, Fixes #28968, Fixes #29141, Fixes #29394, Fixes
#29535, Fixes #29573, Fixes #29921, Fixes #30085, Fixes #30347, Fixes
#30363, Fixes #30837, Fixes #30862, Fixes #31166, Fixes #31239, Fixes
#31259, Fixes #32016, Fixes #32200, Fixes #32312, Fixes #32650, Fixes
#33114, Fixes #33201, Fixes #33229, Fixes #33316, Fixes #33344, Fixes
#33351, Fixes #33400, Fixes #33407, Fixes #33479, Fixes #33660, Fixes
#33722, Fixes #33829, Fixes #33925, Fixes #33966, Fixes #33967, Fixes
#34083, Fixes #34143, Fixes #34190, Fixes #34247, Fixes #34273, Fixes
#34278, Fixes #34437, Fixes #34509, Fixes #34512

</details>

**Full Changelog**:
main...inflight/candidate
KarthikRajaKalaimani pushed a commit to KarthikRajaKalaimani/maui that referenced this pull request Mar 30, 2026
…34146)

> [!NOTE]
> Are you waiting for the changes in this PR to be merged?
> It would be very helpful if you could [test the resulting
artifacts](https://github.com/dotnet/maui/wiki/Testing-PR-Builds) from
this PR and let us know in a comment if this change resolves your issue.
Thank you!

This pull request adds new VisualStateManager feature matrix pages for
Button, CheckBox CollectionView, Entry, Label, Slider and Switch
controls, providing comprehensive demos and test cases for visual state
management. These additions enhance the test suite by enabling users to
interactively explore and verify VisualStateManager behaviors such as
Normal, Selected, PointerOver, Disabled, Focused, and Pressed across
different controls

**New VisualStateManager Feature Matrix Functionality**
- Added a new entry for “VisualStateManager Feature Matrix” to the Core
Views gallery, allowing easy navigation to the new demo pages from the
main test app UI.
- Implemented dedicated feature matrix pages covering the following
controls:
- Entry – Demonstrates visual states such as Normal, Focused, and
Completed with interactive input validation and styling updates.
- Button – Showcases Normal, Pressed, PointerOver, Disabled, and Focused
states with dynamic transitions.
- CollectionView – Demonstrates item-level states such as Normal,
Selected, Disable and PointerOver with interactive selection behavior.
- CheckBox – Covers Normal, Checked, Unchecked, and Disabled states with
dynamic styling.
- Label – Validates visual state transitions including Normal and
Disabled scenarios.
- Slider – Demonstrates Normal, Dragging, and Disabled states with
value-based interactions.
- Switch – Showcases On, Off, and Disabled states with state-based
styling updates.
- Added a supporting VSMCollectionViewViewModel, providing sample data
and logic for testing VisualStateManager behavior within CollectionView
scenarios.

**UI and Feature Coverage Enhancements**
- Added interactive controls and state-triggered styling to validate
VisualStateManager behavior across Entry, Button, CollectionView,
CheckBox, Label, Slider, and Switch.
- Enabled users to dynamically interact with controls to verify state
transitions such as:
- Normal, Selected, PointerOver, Disabled, Focused, Pressed, Checked,
Unchecked, On, Off, Completed, and Dragging.
- Provided structured demonstrations to ensure consistent verification
of visual state behavior across different control types and platforms.

**Code-Behind and Logic**
Created dedicated XAML and code-behind implementations for each
VisualStateManager feature page, including interactive handlers and
state-driven style logic.
Implemented a view model for CollectionView scenarios to supply sample
items and support visual state testing under realistic data-binding
conditions.



https://github.com/user-attachments/assets/7845278f-5328-44f8-a1cd-f21b6c57c166

---------

Co-authored-by: Jakub Florkowski <42434498+kubaflo@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area-testing Unit tests, device tests community ✨ Community Contribution partner/syncfusion Issues / PR's with Syncfusion collaboration

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants