Example #1
0
		private void HandleConditionRejuvenated(object sender, ConditionRejuvenatedEventArgs args)
		{
			if (!Settings.KanColleSettings.NotifyFleetRejuvenated) return;

			var notification = Notification.Create(
				Notification.Types.FleetRejuvenated,
				"疲労回復完了",
				$"「{args.FleetName}」に編成されている艦娘の疲労が回復しました。",
				() => WindowService.Current.MainWindow.Activate());

			this.Notify(notification);
		}