Chummer.HoverDisplayCordinator.AddControlRecursive(System.Windows.Forms.Control)

Here are the examples of the csharp api class Chummer.HoverDisplayCordinator.AddControlRecursive(System.Windows.Forms.Control) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: chummer5a
Source File: clsHoverDisplayCordinator.cs
public void AddControlRecursive(Control control)
        {
            _controls.Add(control);
            control.MouseLeave += control_MouseLeave;
            if (control.HasChildren)
            {
                foreach (Control child in control.Controls)
                {
                    AddControlRecursive(child);
                }
            }
        }