标准 MS 数据连接对话框的本地化

发布于 2024-11-15 17:47:01 字数 897 浏览 3 评论 0原文

数据连接对话框是随 Visual Studio 一起发布的数据库工具组件。它允许用户构建连接字符串并连接到特定的数据源。其源代码已在代码库上发布

在此处输入图像描述

这非常有用,但唯一的问题是它的 UI 始终是英文,无论事实上它在本地化版本的 Windows 下运行。
也许我错过了一些技巧?
我尝试在 WPF 应用程序中使用它:

DataConnectionDialog dcd = new DataConnectionDialog();
DataConnectionConfiguration dcs = new DataConnectionConfiguration(null);
dcs.LoadConfiguration(dcd);

dcd.SelectedDataSource = DataSource.SqlDataSource;
dcd.SelectedDataProvider = DataProvider.SqlDataProvider;
...
if (DataConnectionDialog.Show(dcd) == System.Windows.Forms.DialogResult.OK)
{
  ...       
}

The data connection dialog is a database tool component released with Visual Studio. It allows users to build connection strings and to connect to specific data sources. Its source code has been released on Code Gallery.

enter image description here

It's very useful, but the only problem is that its UI is always in English, regardless of the fact that it's run under a localized version of Windows.
Maybe I missed some tricks?
I tried to use it in a WPF app:

DataConnectionDialog dcd = new DataConnectionDialog();
DataConnectionConfiguration dcs = new DataConnectionConfiguration(null);
dcs.LoadConfiguration(dcd);

dcd.SelectedDataSource = DataSource.SqlDataSource;
dcd.SelectedDataProvider = DataProvider.SqlDataProvider;
...
if (DataConnectionDialog.Show(dcd) == System.Windows.Forms.DialogResult.OK)
{
  ...       
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

篱下浅笙歌 2024-11-22 17:47:01

坏消息:默认情况下未本地化
好消息:通过添加您所需语言的资源,可以轻松本地化该项目。

在此处输入图像描述

Bad news: It's not localized by default
Good news: The project is easy localizable by adding the resources for the language that you need.

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文