示例#1
0
 public SearchCommand(ListView listView, PathHistoryCache cache, string pattern, IFileService service)
 {
     ListView = listView;
     Cache    = cache;
     Pattern  = pattern;
     Service  = service;
 }
示例#2
0
 public InitCommand(PathHistoryCache cache, ListView listView, TreeView treeView, TextBox pathTb, IFileService service) : base(cache, listView, service)
 {
     FileTree = treeView;
     PathTb   = pathTb;
 }
示例#3
0
 public BackCommand(PathHistoryCache cache, ListView listView, TextBox pathTbBox, IFileService service)
     : base(cache, listView, service)
 {
     PathTbBox = pathTbBox;
 }
示例#4
0
 public LoadListCommand(PathHistoryCache cache, ListView listView, string path, IFileService service) : base(cache, listView, service)
 {
     Path = path;
 }
示例#5
0
 protected NavigateCommand(PathHistoryCache cache, ListView listView, IFileService service)
 {
     Cache    = cache;
     ListView = listView;
     Service  = service;
 }