我正在使用以下MouseMove
事件处理程序将文本文件内容显示为 CheckedListBox 上的工具提示,并且每个 checkedListBoxItem 都有一个文本文件对象。
private void checkedListBox1_MouseMove(object sender, MouseEventArgs e)
{
int itemIndex = checkedListBox1.IndexFromPoint(new Point(e.X, e.Y));
if (itemIndex >= 0)
{
if (checkedListBox1.Items[itemIndex] != null)
{
TextFile tf = (TextFile)checkedListBox1.Items[itemIndex];
string subString = tf.JavaCode.Substring(0, 350);
toolTip1.ToolTipTitle = tf.FileInfo.FullName;
toolTip1.SetToolTip(checkedListBox1, subString + "\n... ... ...");
}
}
}
问题是,由于在checkedListBox 上频繁移动鼠标,我的应用程序变慢了。
作为替代方案,我想,我应该使用MouseHover
事件及其处理程序。但我找不到我的 musePointer 当前在哪个 checkListBoxItem 上。像这样:
private void checkedListBox1_MouseHover(object sender, EventArgs e)
{
if (sender != null)
{
CheckedListBox chk = (CheckedListBox)sender;
int index = chk.SelectedIndex;
if (chk != null)
{
TextFile tf = (TextFile)chk.SelectedItem;
string subString = tf.FileText.Substring(0, 350);
toolTip1.ToolTipTitle = tf.FileInfo.FullName;
toolTip1.SetToolTip(checkedListBox1, subString + "\n... ... ...");
}
}
}
这里int index
正在返回 -1 并且chk.SelectedItem
正在返回null
。
这类问题的解决方案是什么?