私はWindowsアプリケーションに取り組んでいます。アプリケーションには に表示されるフォームが 1 つありますcheck boxes
。check box list
フォームのスクリーン ショットを次に示します。
それは、私が異なる言語で表示する私のアプリケーションの単一です。また、私の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);
しかし、それは私にいくつかのエラーメッセージを表示します