1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2025-12-06 00:13:33 +00:00
Files
MeshCentralRouter/CustomAppsAddForm.cs
Ylian Saint-Hilaire f6c44b1d42 Fixed custom apps.
2022-05-13 00:06:58 -07:00

70 lines
1.9 KiB
C#

using System;
using System.IO;
using System.Windows.Forms;
namespace MeshCentralRouter
{
public partial class CustomAppsAddForm : Form
{
public string appName
{
get { return nameTextBox.Text; }
set { nameTextBox.Text = value; updateInfo(); }
}
public string appProtocol
{
get { return protocolTextBox.Text; }
set { protocolTextBox.Text = value; updateInfo(); }
}
public string appCommand
{
get { return commandTextBox.Text; }
set { commandTextBox.Text = value; updateInfo(); }
}
public string appArgs
{
get { return argsTextBox.Text; }
set { argsTextBox.Text = value; updateInfo(); }
}
public CustomAppsAddForm()
{
InitializeComponent();
}
public void updateInfo()
{
okButton.Enabled = (nameTextBox.Text.Length > 0) && (protocolTextBox.Text.Length > 0) && (commandTextBox.Text.Length > 0) && (nameTextBox.Text.IndexOf(' ') == -1) && (protocolTextBox.Text.IndexOf(' ') == -1) && (File.Exists(commandTextBox.Text));
}
private void CustomAppsAddForm_Load(object sender, EventArgs e)
{
updateInfo();
nameTextBox.Focus();
}
private void nameTextBox_TextChanged(object sender, EventArgs e)
{
updateInfo();
}
private void okButton_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
}
private void cancelButton_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.Cancel;
}
private void selectFileButton_Click(object sender, EventArgs e)
{
if (openFileDialog.ShowDialog(this) == DialogResult.OK)
{
commandTextBox.Text = openFileDialog.FileName;
}
}
}
}