1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2026-02-22 12:23:24 +00:00

Added drag & drop support to the file manager.

This commit is contained in:
Ylian Saint-Hilaire
2020-09-21 13:05:09 -07:00
parent 59b54bf520
commit 839414fec1
5 changed files with 310 additions and 219 deletions

View File

@@ -12,10 +12,15 @@ namespace MeshCentralRouter
{
public partial class FileDeletePromptForm : Form
{
public FileDeletePromptForm(string message)
public FileDeletePromptForm(string message, bool rec)
{
InitializeComponent();
mainLabel.Text = message;
if (rec == false)
{
recursiveCheckBox.Visible = false;
Height = 142;
}
}
public bool recursive { get { return recursiveCheckBox.Checked; } }