TraktRater.TraktRater.EnableLetterboxdControls C# (CSharp) Method

EnableLetterboxdControls() private method

private EnableLetterboxdControls ( bool enableState ) : void
enableState bool
return void
        private void EnableLetterboxdControls(bool enableState)
        {
            lblLetterboxdDiary.Enabled = enableState;
            lblLetterboxdRatingsFile.Enabled = enableState;
            lblLetterboxdWatched.Enabled = enableState;
            btnLetterboxdDiaryBrowse.Enabled = enableState;
            btnLetterboxdRatingsBrowse.Enabled = enableState;
            btnLetterboxdWatchedBrowse.Enabled = enableState;
            txtLetterboxdDiaryFile.Enabled = enableState;
            txtLetterboxdRatingsFile.Enabled = enableState;
            txtLetterboxdWatchedFile.Enabled = enableState;
        }
TraktRater