mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
70 lines
1.8 KiB
C#
70 lines
1.8 KiB
C#
using System.Windows;
|
|
using System.Windows.Forms;
|
|
using Wox.Plugin.Program.Programs;
|
|
|
|
namespace Wox.Plugin.Program
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for AddProgramSource.xaml
|
|
/// </summary>
|
|
public partial class AddProgramSource
|
|
{
|
|
private Settings.ProgramSource _editing;
|
|
private Settings _settings;
|
|
|
|
public AddProgramSource(Settings settings)
|
|
{
|
|
InitializeComponent();
|
|
_settings = settings;
|
|
Directory.Focus();
|
|
}
|
|
|
|
public AddProgramSource(Settings.ProgramSource edit, Settings settings)
|
|
{
|
|
_editing = edit;
|
|
_settings = settings;
|
|
|
|
InitializeComponent();
|
|
Directory.Text = _editing.Location;
|
|
MaxDepth.Text = _editing.MaxDepth.ToString();
|
|
}
|
|
|
|
private void BrowseButton_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
var dialog = new FolderBrowserDialog();
|
|
DialogResult result = dialog.ShowDialog();
|
|
if (result == System.Windows.Forms.DialogResult.OK)
|
|
{
|
|
Directory.Text = dialog.SelectedPath;
|
|
}
|
|
}
|
|
|
|
private void ButtonAdd_OnClick(object sender, RoutedEventArgs e)
|
|
{
|
|
int max;
|
|
if(!int.TryParse(MaxDepth.Text, out max))
|
|
{
|
|
max = -1;
|
|
}
|
|
|
|
if(_editing == null)
|
|
{
|
|
var source = new Settings.ProgramSource
|
|
{
|
|
Location = Directory.Text,
|
|
MaxDepth = max
|
|
};
|
|
_settings.ProgramSources.Add(source);
|
|
}
|
|
else
|
|
{
|
|
_editing.Location = Directory.Text;
|
|
_editing.MaxDepth = max;
|
|
}
|
|
|
|
DialogResult = true;
|
|
Close();
|
|
}
|
|
}
|
|
}
|