Blame | Last modification | View Log | Download | RSS feed
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace SWAT_Office_App{public partial class Menu1_Main : Form{public Menu1_Main(){InitializeComponent();Settings_Form.ImportSettings();}private void btn_Main_UserMgmt_Click(object sender, EventArgs e){ManageUserAccounts_Form user_Mgmt = new ManageUserAccounts_Form();user_Mgmt.ShowDialog();}private void btn_Main_Settings_Click(object sender, EventArgs e){SettingsVerify_Form newForm = new SettingsVerify_Form();newForm.ShowDialog();}private void btn_Reimage_USB_Drives_Click(object sender, EventArgs e){if (Reimage_USB_Drives.threadsRunning == false)Reimage_USB_Drives.reimageUSBDrives();else{MessageBox.Show("Another file copy operation is currently in progress.\n" +"Please wait for transfer to finish before starting another");}}private void Menu1_Main_Load(object sender, EventArgs e){}}}