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