0
我在設計時將項目添加到列表視圖中,如何本地化listview項目文本?
但項目的文本沒有被添加到相應的.resx文件中。
我是否需要在Listview中設置任何屬性?
我已經設置本地化墊層表格的屬性爲「真」
我在設計時將項目添加到列表視圖中,如何本地化listview項目文本?
但項目的文本沒有被添加到相應的.resx文件中。
我是否需要在Listview中設置任何屬性?
我已經設置本地化墊層表格的屬性爲「真」
開關形式屬性窗口中的語言。然後更改您的ListViewItem
的Text屬性。
檢查其他部分在您的resx或打開它在Xml編輯器。
private void PopulateListView()
{
ListView1.Width = 300;
ListView1.Location = new System.Drawing.Point(10, 50);
// Declare and construct the ColumnHeader objects.
ColumnHeader header1, header2;
header1 = new ColumnHeader();
header2 = new ColumnHeader();
// Set the text, alignment and width for each column header.
header1.Text = "Column1"; //Helper.getlocalStringResource("Xinga.LocalStrings.ColumnHeader.ResourceValue");
header1.Width = 100;
header2.Text = "Column2"; //Helper.getlocalStringResource("Xinga.LocalStrings.ColumnHeader.ResourceValue");
header2.Width = 100;
// Add the headers to the ListView control.
ListView1.Columns.Add(header1);
ListView1.Columns.Add(header2);
ListView1.View = View.Details; //important to see the headers
}
然後header.Text可本地化...
一些代碼示例或截屏在這裏很有用。 – 2012-01-17 11:21:39
奇怪的看起來像設計時間本地化不起作用。 :/ – Reniuz 2012-01-17 11:47:56