diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Command.cs b/Plugins/Flow.Launcher.Plugin.Sys/Command.cs index 84f5f046f..6c3a99f3e 100644 --- a/Plugins/Flow.Launcher.Plugin.Sys/Command.cs +++ b/Plugins/Flow.Launcher.Plugin.Sys/Command.cs @@ -6,12 +6,39 @@ namespace Flow.Launcher.Plugin.Sys { public string Key { get; set; } + private string name; [JsonIgnore] - public string Name { get; set; } + public string Name + { + get => name; + set + { + name = value; + OnPropertyChanged(); + } + } + private string description; [JsonIgnore] - public string Description { get; set; } + public string Description + { + get => description; + set + { + description = value; + OnPropertyChanged(); + } + } - public string Keyword { get; set; } + private string keyword; + public string Keyword + { + get => keyword; + set + { + keyword = value; + OnPropertyChanged(); + } + } } } diff --git a/Plugins/Flow.Launcher.Plugin.Sys/CommandKeywordSetting.xaml b/Plugins/Flow.Launcher.Plugin.Sys/CommandKeywordSetting.xaml new file mode 100644 index 000000000..a848f2f1f --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.Sys/CommandKeywordSetting.xaml @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +