Is it possible set specific culture for DateTimePicker
control? I would like use this specific culture on format name of moths and time format. For Example I create specific culture:
CultureInfo.GetCultureInfo("sk-Sk");
Thanks for advice.
Is it possible set specific culture for DateTimePicker
control? I would like use this specific culture on format name of moths and time format. For Example I create specific culture:
CultureInfo.GetCultureInfo("sk-Sk");
Thanks for advice.
Copyright © 2021 Jogjafile Inc.
You could try adding:
or
to your applications StartupEventHandler
This should set the culture info for all WPF controls (not sure if you really want to just change the culture for the DateTimePicker)