added function to run on form close, and added comment for the population of the device tab
This commit is contained in:
parent
07d394c519
commit
213b4eb226
1 changed files with 2 additions and 1 deletions
|
@ -134,9 +134,10 @@ namespace Saviour_Backup_System
|
||||||
private void formatDriveCapacityTimer_Tick(object sender, EventArgs e) { try { formatDriveCapacity(); } catch { } } //Because background workers cant interact with the GUI (very quickly)
|
private void formatDriveCapacityTimer_Tick(object sender, EventArgs e) { try { formatDriveCapacity(); } catch { } } //Because background workers cant interact with the GUI (very quickly)
|
||||||
|
|
||||||
private void populateDeviceTab() {
|
private void populateDeviceTab() {
|
||||||
|
// put stuff in here!!
|
||||||
deviceTab.Visible = true;
|
deviceTab.Visible = true;
|
||||||
deviceTab.Select();
|
deviceTab.Select();
|
||||||
}
|
}
|
||||||
|
private void mainWindow_FormClosing(object sender, FormClosingEventArgs e) { setup.closeProgram(sender, e); }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue