mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
Remove harder coded text
1. Remove harder coded text, part of refactoring for PR #494 2. Remove other arguments redundant
This commit is contained in:
parent
49ca3bfd00
commit
c00583dd98
@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Windows.Input;
|
||||
|
||||
namespace Wox.ViewModel
|
||||
@ -7,7 +8,7 @@ namespace Wox.ViewModel
|
||||
public class BaseViewModel : INotifyPropertyChanged
|
||||
{
|
||||
|
||||
protected void OnPropertyChanged(string propertyName)
|
||||
protected void OnPropertyChanged([CallerMemberName] string propertyName = null)
|
||||
{
|
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
||||
}
|
||||
|
@ -66,7 +66,7 @@ namespace Wox.ViewModel
|
||||
set
|
||||
{
|
||||
_queryText = value;
|
||||
OnPropertyChanged("QueryText");
|
||||
OnPropertyChanged();
|
||||
HandleQueryTextUpdated();
|
||||
}
|
||||
}
|
||||
@ -80,7 +80,7 @@ namespace Wox.ViewModel
|
||||
set
|
||||
{
|
||||
_isProgressBarTooltipVisible = value;
|
||||
OnPropertyChanged("IsProgressBarTooltipVisible");
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
@ -93,7 +93,7 @@ namespace Wox.ViewModel
|
||||
set
|
||||
{
|
||||
_left = value;
|
||||
OnPropertyChanged("Left");
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
@ -106,7 +106,7 @@ namespace Wox.ViewModel
|
||||
set
|
||||
{
|
||||
_top = value;
|
||||
OnPropertyChanged("Top");
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
@ -119,7 +119,7 @@ namespace Wox.ViewModel
|
||||
set
|
||||
{
|
||||
_contextMenuVisibility = value;
|
||||
OnPropertyChanged("ContextMenuVisibility");
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
@ -132,7 +132,7 @@ namespace Wox.ViewModel
|
||||
set
|
||||
{
|
||||
_progressBarVisibility = value;
|
||||
OnPropertyChanged("ProgressBarVisibility");
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
@ -145,7 +145,7 @@ namespace Wox.ViewModel
|
||||
set
|
||||
{
|
||||
_resultListBoxVisibility = value;
|
||||
OnPropertyChanged("ResultListBoxVisibility");
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
@ -158,7 +158,7 @@ namespace Wox.ViewModel
|
||||
set
|
||||
{
|
||||
_mainWindowVisibility = value;
|
||||
OnPropertyChanged("MainWindowVisibility");
|
||||
OnPropertyChanged();
|
||||
MainWindowVisibilityChanged?.Invoke(this, new EventArgs());
|
||||
|
||||
if (!value.IsVisible() && ContextMenuVisibility.IsVisible())
|
||||
@ -335,7 +335,7 @@ namespace Wox.ViewModel
|
||||
Action = _ =>
|
||||
{
|
||||
TopMostRecordStorage.Instance.Remove(result);
|
||||
App.API.ShowMsg("Succeed", "", "");
|
||||
App.API.ShowMsg("Succeed");
|
||||
return false;
|
||||
}
|
||||
};
|
||||
@ -348,7 +348,7 @@ namespace Wox.ViewModel
|
||||
Action = _ =>
|
||||
{
|
||||
TopMostRecordStorage.Instance.AddOrUpdate(result);
|
||||
App.API.ShowMsg("Succeed", "", "");
|
||||
App.API.ShowMsg("Succeed");
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
@ -77,7 +77,7 @@ namespace Wox.ViewModel
|
||||
set
|
||||
{
|
||||
_isSelected = value;
|
||||
OnPropertyChanged("IsSelected");
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
@ -105,7 +105,7 @@ namespace Wox.ViewModel
|
||||
Action = _ =>
|
||||
{
|
||||
TopMostRecordStorage.Instance.Remove(result);
|
||||
App.API.ShowMsg("Succeed", "", "");
|
||||
App.API.ShowMsg("Succeed");
|
||||
return false;
|
||||
}
|
||||
};
|
||||
@ -118,7 +118,7 @@ namespace Wox.ViewModel
|
||||
Action = _ =>
|
||||
{
|
||||
TopMostRecordStorage.Instance.AddOrUpdate(result);
|
||||
App.API.ShowMsg("Succeed", "", "");
|
||||
App.API.ShowMsg("Succeed");
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
@ -51,7 +51,7 @@ namespace Wox.ViewModel
|
||||
|
||||
}
|
||||
|
||||
OnPropertyChanged("SelectedResult");
|
||||
OnPropertyChanged();
|
||||
|
||||
}
|
||||
}
|
||||
@ -65,7 +65,7 @@ namespace Wox.ViewModel
|
||||
set
|
||||
{
|
||||
_margin = value;
|
||||
OnPropertyChanged("Margin");
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user