1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2026-02-22 20:33:26 +00:00

Added upload to file manager.

This commit is contained in:
Ylian Saint-Hilaire
2020-09-18 17:27:53 -07:00
parent e21a115e90
commit 4deea28edd
23 changed files with 7186 additions and 314 deletions

33
FileDeletePromptForm.cs Normal file
View File

@@ -0,0 +1,33 @@
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 FileDeletePromptForm : Form
{
public FileDeletePromptForm(string message)
{
InitializeComponent();
mainLabel.Text = message;
}
public bool recursive { get { return recursiveCheckBox.Checked; } }
private void okButton_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
}
private void cancelButton_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.Cancel;
}
}
}