12345678910111213141516171819202122232425262728293031 |
- using Prism.Commands;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Master.Helper
- {
-
-
-
- public static class GlobalCommands
- {
- public static CompositeCommand PrePageCommand = new CompositeCommand();
- public static CompositeCommand NextPageCommand = new CompositeCommand();
- public static CompositeCommand FirstPageCommand = new CompositeCommand();
- public static CompositeCommand LastPageCommand = new CompositeCommand();
- public static CompositeCommand PreViewCommand = new CompositeCommand();
- public static CompositeCommand NextViewCommand = new CompositeCommand();
- public static CompositeCommand UpCommand = new CompositeCommand();
- public static CompositeCommand DownCommand = new CompositeCommand();
- }
- }
|