Esempio n. 1
0
        public Control GetHoveredControl()
        {
            Control hovered;

            try
            {
                if (ActiveForm != null && ActiveForm.Visible && !(ActiveForm is ToolTipForm))
                {
                    hovered = ActiveForm.GetHoveredControl();
                    if (hovered != null)
                    {
                        return(hovered);
                    }
                }
                foreach (var lastForm in Application.OpenForms.OfType <Form>().Where(x => !(x is ToolTipForm) && x.Visible))
                {
                    hovered = lastForm.GetHoveredControl();
                    if (hovered != null)
                    {
                        return(hovered);
                    }
                }
            }
            catch (Exception e)
            {
                Trace.TraceError("MainWindow.GetHoveredControl error:", e);
                //random crash with NULL error on line 140, is weird since already have NULL check (high probability in Linux when we changed focus)
            }
            return(null);
        }