1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2026-01-19 00:03:14 +00:00

Customization improvements.

This commit is contained in:
Ylian Saint-Hilaire
2020-11-04 12:41:32 -08:00
parent d5e69db1b4
commit 64ca287a2f
11 changed files with 2373 additions and 62 deletions

32
DeviceSettingsForm.cs Normal file
View File

@@ -0,0 +1,32 @@
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 DeviceSettingsForm : Form
{
public DeviceSettingsForm()
{
InitializeComponent();
doubleClickComboBox.SelectedIndex = 0;
}
public int deviceDoubleClickAction
{
get { return doubleClickComboBox.SelectedIndex; }
set { doubleClickComboBox.SelectedIndex = value; }
}
private void okButton_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
}
}
}