We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi. I'd like to set 24 hour format selection in TimePicker. So far I have to set if this is AM or PM, which is not pretty common in Czech format.
Environment
MahApps.Metro v1.5.0.23 Windows OS 10/7 Visual Studio 2015 .NET Framework 4.5.2
The text was updated successfully, but these errors were encountered:
@honzasram The AM/PM comes from the Culture properties DateTimeFormat.AMDesignator and DateTimeFormat.PMDesignator
DateTimeFormat.AMDesignator
DateTimeFormat.PMDesignator
Sorry, something went wrong.
@punker76 Thank you for reply. However, I'm not pretty sure if I understand. What exactly should i add to code?
Even if I set up Culture to "cs-CZ" which uses 24 hour format by default, I Get this
I want to get rid of AM/PM selector (in this case dop./odp.) and get all 24 hour to hour combobox.
Code: <controls:TimePicker Margin="2" IsClockVisible="False" Culture="cs-CZ" PickerVisibility="HourMinute" SelectedTime="{Binding ActionSelectedTime, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged, NotifyOnValidationError=True}"/>
<controls:TimePicker Margin="2" IsClockVisible="False" Culture="cs-CZ" PickerVisibility="HourMinute" SelectedTime="{Binding ActionSelectedTime, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged, NotifyOnValidationError=True}"/>
@honzasram Ok, you're right. I found the problem and will fix it in 1.6.0 (and alpha).
66aadb0
Fix tests and time check for #2985
994cff6
@honzasram You can test the latest alpha version.
punker76
No branches or pull requests
Hi. I'd like to set 24 hour format selection in TimePicker. So far I have to set if this is AM or PM, which is not pretty common in Czech format.
Environment
MahApps.Metro v1.5.0.23
Windows OS 10/7
Visual Studio 2015
.NET Framework 4.5.2
The text was updated successfully, but these errors were encountered: