-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[Windows]Fix Dot based Date Format property in DatePicker not working on Windows #29058
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
[Windows]Fix Dot based Date Format property in DatePicker not working on Windows #29058
Conversation
/azp run MAUI-UITests-public |
@@ -0,0 +1,23 @@ | |||
#if TEST_FAILS_ON_CATALYST //The Format property is not supported on the Mac platform; it always displays the default format. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have a related open issue? if exists, could you include the link to the issue here? And if not, could you create a new one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jsuarezruiz , I have created a new issue report and added a comment
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run MAUI-UITests-public |
Azure Pipelines successfully started running 1 pipeline(s). |
Issue Details
When using a dot-based format (e.g., dd.MM.yyyy) in DatePicker, only the day is shown. The issue occurs because the separator is not correctly detected, resulting in an empty string.
Description of Change
Added a condition to check for . in the format string and assign it as the separator to ensure the full date (day, month, year) is displayed correctly.
Issues Fixed
Fixes #10805
Tested the behavior in the following platforms.
Output Screenshot
Before.mp4
After.mp4