2012年9月4日

winform listbox 显示tooltip(防闪烁)

摘要: private void listBox1_MouseMove(object sender, MouseEventArgs e) { int index = listBox1.IndexFromPoint(e.Location); // Check if the index is valid. if (index != -1 && index < listBox1.Items.Count) { // Check if the ToolTip's text isn'... 阅读全文

posted @ 2012-09-04 10:11 pawns 阅读(4334) 评论(1) 推荐(0)

导航