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);
}
一旦我的鼠标悬停在复选框区域上,我会看到文本消息,但如果文本消息位于表单中某处的复选框上方。
我怎样才能让它显示在复选框名称下?