123456789101112131415161718192021222324252627 |
- using Prism.Commands;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Master.Helper
- {
- /// <summary>
- /// 全局可用的命令 注册后,在任何界面可以当作静态资源绑定
- /// </summary>
- 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();
- }
- }
|