System.Windows.Forms.Control.SetVisibleCore(bool)

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

2 Examples 7

1. Example

Project: mbunit-v3
Source File: ToolWindow.cs
protected override void SetVisibleCore(bool value)
        {
            base.SetVisibleCore(value);

            if (toolWindowPane != null)
            {
                if (value)
                    toolWindowPane.Show();
                else
                    toolWindowPane.Hide();
            }
        }

2. Example

Project: SystemEx
Source File: UserControlEx.cs
protected override void SetVisibleCore(bool value)
        {
            _fixer.InitializeForm();

            base.SetVisibleCore(value);
        }