0
private void checkBox3_MouseEnter(object sender, EventArgs e)
{
     mytip3 = new ToolTip();
     mytip3.UseFading = true;
     mytip3.Show("If Checked The Zipped File Will Be Created Automatic\r\n Once The Process Has Finished", checkBox1, 5000);
}

一旦我的鼠标悬停在复选框区域上,我会看到文本消息,但如果文本消息位于表单中某处的复选框上方。

我怎样才能让它显示在复选框名称下?

4

1 回答 1

0

这对我有用:

mytip3.Show("If Checked The Zipped File Will Be Created Automatic\r\n Once The Process Has Finished", checkBox1,267,170, 5000);
于 2013-08-03T21:09:42.063 回答