私は10個のテキストボックスを持っており、それぞれからテキストを選択する必要があります。 問題は、複数のテキストボックスからテキストを選択できないことです。 私のコードがこの問題の解決策はありますか?複数のテキストボックスから同時にテキストを選択
private void Form1_Load(object sender, EventArgs e)
{
createTextBoxes(10);
((TextBox)textBoxes[0]).Select(1, 4);
((TextBox)textBoxes[1]).Select(1, 4); // <- it will not select text
((TextBox)textBoxes[2]).Select(1, 4); // same here
}
Control[] textBoxes;
private void createTextBoxes(int cnt)
{
textBoxes = new Control[cnt];
for (int i = 0; i < cnt; i++)
{
TextBox tb = new TextBox();
tb.Name = i.ToString();
tb.Location = new Point(5, 5 + 14 * i);
tb.Size = new Size(600, 20);
tb.BorderStyle = BorderStyle.None;
tb.Text = "sample text" + i.ToString();
textBoxes[i] = tb;
this.Controls.Add(tb);
}
}
2番目のテキストボックスのテキストが選択されていないことは確かですか?テキストが選択されている可能性があります。コントロールにフォーカスがないので、選択されていないと表示されますか?選択の目的は何ですか? – j0tt
私は長方形のテキスト選択を作成しようとしています – Woland