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:
@@ -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; } }
|
||||
|
||||
Reference in New Issue
Block a user