我在包含列表框的表单中有一个UserControl。我想自动选择列表框中的第一个项目(假设至少有一个项目),但我无法使用以下代码:
private void Lightnings_Mode_Load(object sender, EventArgs e)
{
this.Size = new Size(416, 506);
this.Location = new Point(23, 258);
listBoxIndexs();
listBoxControl1.MyListBox.SelectedIndex = 0;
if (this.listBoxControl1.MyListBox.Items.Count > 0)
this.listBoxControl1.MyListBox.SelectedIndex = 0;
listBoxControl1.MyListBox.SelectedIndexChanged += new EventHandler(listBox1_SelectedIndexChanged);
this.listBoxControl1.ItemRemoved += new EventHandler<ItemEventArgs>(listBoxControl1_ItemRemoved);
}
这一行:listBoxControl1.MyListBox.SelectedIndex = 0;将第一个ListBox项目标记为蓝色,就像它被选中一样。但它不是真正选择项目!
所以我试着添加这个:
if (this.listBoxControl1.MyListBox.Items.Count > 0)
this.listBoxControl1.MyListBox.SelectedIndex = 0;
但它也没有用。
这是SelectedIndex事件:
private void listBox1_SelectedIndexChanged(object sender, System.EventArgs e)
{
item = listBoxControl1.MyListBox.SelectedItem.ToString();
this.f1.PlayLightnings();
f1.pdftoolsmenu();
int indx = listBoxControl1.MyListBox.SelectedIndex;
if (listBoxControl1.Indices.Contains(indx))
{
if (item != null && !pdf1.Lightnings.Contains(item.ToString()))
{
pdf1.Lightnings.Add(item.ToString());
}
}
}
事件的名称不正确我必须更改它,因为它是UserControl上的ListBox,但它是正确的。
当我在SelectedIndex事件中放置断点并单击某个项目时,它会在断点处停止。但是,一旦我使用UserControl和ListBox显示/打开新表单,我希望它自动转到selectedIndex事件。
因此,如果我在SelectedIndex事件中放置一个断点,当我单击Form1中的按钮以显示/打开新表单时,它将自动停止在断点中,就像我点击第一个项目一样。
这是Form1中显示新表单的代码:
if (toolStripComboBox2.SelectedIndex == -1 && toolStripComboBox1.SelectedIndex == -1)
{
}
else
{
Lightnings_Extractor.Lightnings_Mode lightningsmode1 = new Lightnings_Extractor.Lightnings_Mode(this);
lightningsmode1.Show();
}
除了自动选择第一项外,一切正常。
答案 0 :(得分:3)
您可能需要更换开始收听事件的行以及实际播放的位置。
尝试更改:
if (this.listBoxControl1.MyListBox.Items.Count > 0)
this.listBoxControl1.MyListBox.SelectedIndex = 0;
listBoxControl1.MyListBox.SelectedIndexChanged += new EventHandler(listBox1_SelectedIndexChanged);
对此:
listBoxControl1.MyListBox.SelectedIndexChanged += new EventHandler(listBox1_SelectedIndexChanged);
if (this.listBoxControl1.MyListBox.Items.Count > 0)
this.listBoxControl1.MyListBox.SelectedIndex = 0;
通常我会在表单的OnLoad部分订阅EventHandlers,并调整OnShow部分中的任何设置以帮助避免此类事情。
答案 1 :(得分:1)
http://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.setselected(v=vs.90).aspx
而不是
if (this.listBoxControl1.MyListBox.Items.Count > 0)
this.listBoxControl1.MyListBox.SelectedIndex = 0;
试试这个:
if (this.listBoxControl1.MyListBox.Items.Count > 0)
this.listBoxControl1.MyListBox.SetSelected(0,true);
答案 2 :(得分:1)
您必须更改项目本身的属性:
listBoxControl1.Focus();
listBoxControl1.Items[0].Selected = true;
第一行并非真的有必要,但我会将其包括在内以防止出现一些问题。
如果列表框中没有项目,您还应该处理IndexOutOfRangeException
。
答案 3 :(得分:0)
您可以尝试这样做:使用0索引。
listBoxControl1.Items[0].Selected = true;