public SelectInBrowserMenuItem(IShell shell, TableBrowserViewModel browser, TableServiceViewModel service)
 {
     this.shell       = shell;
     this.browser     = browser;
     this.service     = service;
     this.DisplayName = Resources.MenuItem_SelectInTableBrowser;
 }
Exemplo n.º 2
0
 public FindTableDataMenuItem(Authenticator authenticator, IShell shell, TableServiceViewModel tableService)
 {
     this.authenticator         = authenticator;
     this.shell                 = shell;
     this.shell.ServiceChanged += this.InvokeCanExecuteChangedEvent;
     this.tableService          = tableService;
     this.InputGesture          = new KeyGesture(Key.F, ModifierKeys.Control | ModifierKeys.Shift);
     this.DisplayName           = Resources.MenuItem_FindAll;
 }