Hourglass.Windows.ThemeManagerWindow.BindTimerWindow C# (CSharp) Method

BindTimerWindow() private method

Binds the TimerWindow to the controls.
private BindTimerWindow ( ) : void
return void
        private void BindTimerWindow()
        {
            if (this.timerWindow.Theme.Type == ThemeType.UserProvided)
            {
                this.EditedTheme = this.CloneThemeForEditing(this.timerWindow.Theme);
                this.SelectedTheme = this.timerWindow.Theme;
                this.State = ThemeManagerWindowState.UserThemeUnedited;
            }
            else
            {
                this.EditedTheme = this.timerWindow.Theme;
                this.SelectedTheme = this.timerWindow.Theme;
                this.State = ThemeManagerWindowState.BuiltInTheme;
            }
        }