Пример #1
0
        public void DivebombTimerStop()
        {
            LogHelper.Log(Logger, "Stopping Timer for Divebomb " + TwintaniaDivebombCount, LogLevel.Debug);

            TwintaniaDivebombTimer.Stop();
            // ReSharper disable once ExplicitCallerInfoArgument
            RaisePropertyChanged("TwintaniaDivebombTimer");
        }
Пример #2
0
        public void DivebombTimerStart()
        {
            TwintaniaDivebombTimer.SoundWhenFinished = Settings.Default.TwintaniaWidgetDivebombAlertFile;
            TwintaniaDivebombTimer.Volume            = Settings.Default.TwintaniaWidgetDivebombVolume;
            TwintaniaDivebombTimer.Counting          = Settings.Default.TwintaniaWidgetDivebombCounting;

            LogHelper.Log(Logger, "Starting Timer for Divebomb " + TwintaniaDivebombCount, LogLevel.Debug);

            TwintaniaDivebombTimer.Start(TwintaniaDivebombTimeToNextMax, 25);
            // ReSharper disable once ExplicitCallerInfoArgument
            RaisePropertyChanged("TwintaniaDivebombTimer");
        }