Translate

Samstag, 4. November 2017

Git change user name and email

C# Enable/ disable all GUI elements

private void EnableGui(Control control, bool enabled)
        {
                foreach (Control c in control.Controls)
                {
                    EnableGui(c, enabled);
                }
                control.Enabled = enabled;
        }


With UIThreadInvoke:
private void EnableGui(Control control, bool enabled)
        {
            this.UiThreadInvoke(() =>
            {
                foreach (Control c in control.Controls)
                {
                    EnableGui(c, enabled);
                }
                control.Enabled = enabled;
            });
        }

The LTE protocol stack based on tutorialspoint.com

My weather app :) Free to use ;)

How to create an alternative coin to bitcoin