Telerik Wpf 控制本地化
我有一个 GridViewResource 来本地化 telerik wpf gridview 并使用以下代码在 app.xaml.cs 中设置
public App()
{
LocalizationManager.Manager = new LocalizationManager() {
ResourceManager = SR.GridViewResource.ResourceManager };
}
此外,我还有一个 DataPagerResource 来本地化 wpf datapager< /code> 但我不知道如何在 app.xaml.cs
中设置这两个资源(GridViewResource
和DataPagerResource
)
I have a GridViewResource
that localize the telerik wpf gridview and set in the app.xaml.cs with the below code
public App()
{
LocalizationManager.Manager = new LocalizationManager() {
ResourceManager = SR.GridViewResource.ResourceManager };
}
Also, I have DataPagerResource
that localize wpf datapager
but I don't know how to set this two resource in the app.xaml.cs
(Both GridViewResource
and DataPagerResource
)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我了解您真正想要做什么,您应该创建并分配一个自定义本地化经理。
请参阅官方 Telerik 文档:
RadControls for WPF 的本地化
you should create and assign a custom localization manager, if I understand what you really want to do.
please refer to the official Telerik Documentation:
Localization of RadControls for WPF