1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2025-12-15 15:53:45 +00:00

Added custom app support.

This commit is contained in:
Ylian Saint-Hilaire
2022-05-12 16:07:33 -07:00
parent 95d1a442be
commit bf668eae23
19 changed files with 6885 additions and 431 deletions

70
CustomAppsAddForm.cs Normal file
View File

@@ -0,0 +1,70 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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 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);
}
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;
}
}
}
}