1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- 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();
- }
- }
|