是否存在用于“国际设置”的 API? 在视觉工作室中?
我正在研究 Visual Studio 可扩展性,我需要从代码设置“shell”语言。 换句话说,我正在寻找一个 API 来完成与您可以使用“工具 ->”“手动”完成的相同操作。 选项... -> 环境-> 国际设置属性页。
到目前为止我还没有找到任何参考:欢迎提示和建议。 ;-)
提前致谢。
编辑:为了澄清一点问题,我需要设置 Visual Studio 本身的当前语言(实际上是独立的 Visual Studio Shell)。
I'm working on Visual Studio Extensibility and I need to set the "shell" language from code. In other words, I'm looking for an API to do the same you can do "by hand" with the Tools -> Options... -> Environment -> International Settings property page.
Up to now I didn't find any reference: hints and suggestions are welcome. ;-)
Thanks in advance.
EDIT: to clarify a bit the question, I need to set the current language of Visual Studio itself (actually of an Isolated Visual Studio Shell).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是您要找的吗?
http://support.microsoft.com/kb/914356
Is this what you're looking for?
http://support.microsoft.com/kb/914356
是的,请在 win32 api 新闻组上询问(这是一个常见问题解答)
news://comp.os.ms-windows.programmer.win32
Yes, ask on win32 api newsgroup (it's a FAQ)
news://comp.os.ms-windows.programmer.win32
我在这里发布了我们(我的同事和我)搜索的当前结果。
我们在 http://msdn.microsoft.com/en-us/ 找到了一些内容库/ms165643.aspx .
特别是,您可以使用
访问那种类型的选项
DTE.Properties("环境", "国际")
I post here the current results of our (my coworker and me) search.
We found something at http://msdn.microsoft.com/en-us/library/ms165643.aspx .
In particular you can access that kind of options with
DTE.Properties("Environment", "International")