mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 20:19:17 +08:00
31 lines
813 B
C#
31 lines
813 B
C#
using System.Windows;
|
|
using Wox.Infrastructure.Storage.UserSettings;
|
|
|
|
namespace Wox.Plugin.Program
|
|
{
|
|
/// <summary>
|
|
/// ProgramSuffixes.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class ProgramSuffixes
|
|
{
|
|
public ProgramSuffixes()
|
|
{
|
|
InitializeComponent();
|
|
|
|
tbSuffixes.Text = UserSettingStorage.Instance.ProgramSuffixes;
|
|
}
|
|
|
|
private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
|
|
{
|
|
if (string.IsNullOrEmpty(tbSuffixes.Text))
|
|
{
|
|
MessageBox.Show("File suffixes can't be empty");
|
|
return;
|
|
}
|
|
|
|
UserSettingStorage.Instance.ProgramSuffixes = tbSuffixes.Text;
|
|
MessageBox.Show("Sucessfully update file suffixes");
|
|
}
|
|
}
|
|
}
|