Use lambda discard parameters

This commit is contained in:
ClemensFischer 2025-12-09 20:17:41 +01:00
parent 301ebacc58
commit 29ccf656cd
11 changed files with 17 additions and 17 deletions

View file

@ -63,7 +63,7 @@ namespace MapControl
loadingProgress = new Progress<double>(p => SetValue(LoadingProgressProperty, p));
updateTimer = new UpdateTimer { Interval = UpdateInterval };
updateTimer.Tick += async (s, e) => await UpdateImageAsync();
updateTimer.Tick += async (_, _) => await UpdateImageAsync();
}
/// <summary>

View file

@ -62,7 +62,7 @@ namespace MapControl
loadingProgress = new Progress<double>(p => SetValue(LoadingProgressProperty, p));
updateTimer = new UpdateTimer { Interval = UpdateInterval };
updateTimer.Tick += (s, e) => UpdateTiles();
updateTimer.Tick += (_, _) => UpdateTiles();
#if WPF
RenderOptions.SetEdgeMode(this, EdgeMode.Aliased);
#elif UWP || WINUI