private void tiptext_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
{
if (tiptext.Location.X == 10 && tiptext.Location.Y == 10)
{
Point formloc = new Point((Screen.PrimaryScreen.Bounds.Width - 176),10) ;
tiptext.Location = formloc;
}
else
{tiptext.Location = new Point(10,10);}
}
private void MouseCaptureForm_Load(object sender, System.EventArgs e)
{
tiptext.Text = noselectString;
}
}
}
评论加载中…
![]() |