我有一个登录表单。该表单有 2 个文本框和 3 个按钮。一个按钮显示“学生”。
我想要做的是在表单打开时在这个按钮上显示一个工具提示。我不想必须转到按钮并将鼠标悬停在其上才能显示。我希望表单加载,显示工具提示,然后工具提示应在 5 秒后消失。这是我到目前为止所尝试的:
private void Form1_Load(object sender, EventArgs e)
{
toolTip.IsBalloon = true;
toolTip.ToolTipIcon = ToolTipIcon.Info;
toolTip.ShowAlways = true;
toolTip.UseFading = true;
toolTip.UseAnimation = true;
toolTip.ToolTipTitle = "Student Mode";
toolTip.Show("You don't have to log in if you are a student. Just click here to go to the questions.", btnStudent);
}