diff --git a/src/PicView.Avalonia/ViewModels/MainViewModel.cs b/src/PicView.Avalonia/ViewModels/MainViewModel.cs index 20cbe5a55..751ab43b8 100644 --- a/src/PicView.Avalonia/ViewModels/MainViewModel.cs +++ b/src/PicView.Avalonia/ViewModels/MainViewModel.cs @@ -1783,6 +1783,14 @@ public MainViewModel(IPlatformSpecificService? platformSpecificService) }); PreviousFolderCommand = ReactiveCommand.CreateFromTask(FunctionsHelper.PrevFolder); + + Skip10Command = ReactiveCommand.CreateFromTask(FunctionsHelper.Next10); + + Skip100Command = ReactiveCommand.CreateFromTask(FunctionsHelper.Next100); + + Prev10Command = ReactiveCommand.CreateFromTask(FunctionsHelper.Prev10); + + Prev100Command = ReactiveCommand.CreateFromTask(FunctionsHelper.Prev100); FirstCommand = ReactiveCommand.CreateFromTask(FunctionsHelper.First); diff --git a/src/PicView.Avalonia/Views/MainView.axaml b/src/PicView.Avalonia/Views/MainView.axaml index 263a767ce..7e2a6a979 100644 --- a/src/PicView.Avalonia/Views/MainView.axaml +++ b/src/PicView.Avalonia/Views/MainView.axaml @@ -434,6 +434,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +