Chromatics.Chromatics.chk_deviceLogitech_CheckedChanged C# (CSharp) Method

chk_deviceLogitech_CheckedChanged() private method

private chk_deviceLogitech_CheckedChanged ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void chk_deviceLogitech_CheckedChanged(object sender, EventArgs e)
        {
            if (StartUp == true)
            {
                if (LogitechSDK != false)
                {
                    ResetDevices();
                    SaveSettings();
                }
                else
                {
                    MessageBox.Show("Logitech Gaming Software is currently not running or not installed. Please install or run the program and restart ACT to enable Logitech Support.");
                }
            }
        }
Chromatics