mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
Implement the support for shortcut key
This commit is contained in:
@@ -25,7 +25,7 @@ namespace Wox.ViewModel
|
||||
{
|
||||
this._result = result;
|
||||
|
||||
this.OpenResultCommand = new RelayCommand(() => {
|
||||
this.OpenResultCommand = new RelayCommand((parameter) => {
|
||||
|
||||
bool hideWindow = result.Action(new ActionContext
|
||||
{
|
||||
@@ -38,7 +38,7 @@ namespace Wox.ViewModel
|
||||
}
|
||||
});
|
||||
|
||||
this.OpenResultActionPanelCommand = new RelayCommand(()=> {
|
||||
this.OpenResultActionPanelCommand = new RelayCommand((parameter) => {
|
||||
|
||||
if(null!= ResultActionPanelOpened)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user