TraktPlugin.Configuration.Configuration_Load C# (CSharp) Méthode

Configuration_Load() private méthode

private Configuration_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Résultat void
        private void Configuration_Load(object sender, EventArgs e)
        {
            // hide the form if silent
            if (SilentMode)
            {
                this.Opacity = 0;
                this.ShowInTaskbar = true;
                this.Visible = false;
            }

            if (AutoSync)
            {
                StartSync();
            }
        }