标签:ide ESS orm hint hid win oid out eve
private void panelControl1_MouseMove(object sender, MouseEventArgs e)
{
DevExpress.XtraEditors.SimpleButton button = panelControl1.GetChildAtPoint(new Point(e.X, e.Y)) as DevExpress.XtraEditors.SimpleButton;
if (button != null && button.Name == "simpleButtonAppCallOut")
{
toolTipController1.ShowHint(button.ToolTip, MousePosition);
}
else
toolTipController1.HideHint();
}
效果如图:
标签:ide ESS orm hint hid win oid out eve
原文地址:https://www.cnblogs.com/lived/p/8926063.html