有没有办法在wpf或telerik中更改当前日历控件?我正在申请中进行翻译。当我将语言更改为日语时,是否可以使用日语日历控件而不是英语日历控件。
答案 0 :(得分:8)
设置控件的FrameworkElement.Language
属性或将xml:lang属性应用于控件的XAML。您必须设置的值为xml:lang="ja-JP".
来自 msdn CultureInfo
例如,
<强> XAML:强>
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xml:lang="ja-JP"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Calendar />
</Grid>
</Window>
<强>输出强>