次の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が現在オンになっているcheckedListBoxItemを見つけることができませんでした。このような:
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
ます。
この種の問題の解決策は何でしょうか?