private void listBox1_SelectedIndexChanged(object sender, System.EventArgs e)
{
if(this.listBox1.SelectedIndices.Count>0)
{
this.toolTip1.Active=true; this.toolTip1.SetToolTip(this.listBox1,this.listBox1.Items[this.listBox1.SelectedIndex].ToString());
}
else
{
this.toolTip1.Active=false;
}
}可以在你选择某一项时提示这一项的内容