我在Windows應用程序上工作。它有一種形式的應用程序,它顯示在check box list
check boxes
,這裏是形式的屏幕截圖如何更改複選框列表中的複選框文本?我試過,但得到了錯誤信息
這是從我的申請單,我在不同的語言,也是我的Windows應用程序在多種語文顯示如英語,德語,日語等。
我的問題是how to display translated text of check box in check box list
這裏是我的代碼:
this.checkedListBox1.FormattingEnabled = true;
this.checkedListBox1.Items.AddRange(new object[] {
"Select All",
"Amplitude1",
"Amplitude2",
"Amplitude3",
"Amplitude4",
"Amplitude5",
"Amplitude6",
"Amplitude7"});
this.checkedListBox1.Location = new System.Drawing.Point(96, 55);
this.checkedListBox1.Name = "checkedListBox1";
this.checkedListBox1.Size = new System.Drawing.Size(123, 124);
this.checkedListBox1.TabIndex = 8;
this.checkedListBox1.SelectedIndexChanged += new System.EventHandler(this.ckbselectall_CheckedChanged);
我做了一個單一的文件翻譯形式的文本,我把下面其中LCheckBox
是從哪兒我複選框的文本複選框列表
this.checkedListBox1.FormattingEnabled = true;
this.checkedListBox1.Items.AddRange(new object[] {
LCheckBox.SELECTALL,
LCheckBox.Amplitude1,
LCheckBox.Amplitude2,
LCheckBox.Amplitude3,
LCheckBox.Amplitude4,
LCheckBox.Amplitude5,
LCheckBox.Amplitude6,
LCheckBox.Amplitude7});
this.checkedListBox1.Location = new System.Drawing.Point(96, 55);
this.checkedListBox1.Name = "checkedListBox1";
this.checkedListBox1.Size = new System.Drawing.Size(123, 124);
this.checkedListBox1.TabIndex = 8;
this.checkedListBox1.SelectedIndexChanged += new System.EventHandler(this.ckbselectall_CheckedChanged);
翻譯我的文件,它的代碼,但它給了我一些錯誤信息
編輯您的問題與錯誤消息。 – h1ghfive 2012-08-16 07:05:16