12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- 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();
-
-
-
- public static CompositeCommand SinglePageCommand = new CompositeCommand();
-
-
-
- public static CompositeCommand DoublePageCommand = new CompositeCommand();
-
-
-
- public static CompositeCommand FullWindowCommand = new CompositeCommand();
-
-
-
- public static CompositeCommand BookMarkCommand = new CompositeCommand();
-
-
-
- public static CompositeCommand ZoomInCommand = new CompositeCommand();
-
-
-
- public static CompositeCommand ZoomOutPageCommand = new CompositeCommand();
-
-
-
- public static CompositeCommand RealSizeCommand = new CompositeCommand();
- }
- }
|