0

我正在使用WIndows 8, 和Visual Studio 2012 Metro. 我需要添加一个DropDownList并让用户选择语言。当用户选择一种特定语言时,我需要将标签中的所有文本值更改为该特定语言。

我跟着这个教程

I  R-CLick project added `APPGlobal_Resource` folder
I R-Clicked and added `APPGlobal_Resource` and created a Resource file called rss.resx 
Then i duplicated this file and named it rss.fr.resx
I gave 2 values `String1` and `Hello` and `Bonjour` as values (in both files)
R-Click `dropdownlist` and `edit item`, and `ADD` and then gave `en-US` as `Name` and `value`as  `en-US` (same way i gave `en-fr`)
Then i set the Label property, `Data (Expression)` `Bindable property` to `Text` and `Expression Type` to `Resources`.

I gave the `Class Key` to `Res` and `Resource Key` to `String1`.

我写了下面的代码Default.aspx.cs

 protected override void InitializeCulture()
        {
            base.InitializeCulture();
            String cult = Request["DropDownList1"];

            if (cult != null)
            {
                Culture = cult;
                UICulture = cult;
            }
        }

下拉菜单显示en-US and en-fr但当我选择它时没有任何变化。我该如何解决这个问题?

4

1 回答 1

1

不确定,但它可以帮助:

System.Threading.Thread.CurrentThread.CurrentCulture = 
    new System.Globalization.CultureInfo( cult );
于 2013-01-17T19:44:19.800 回答