1
Fork 0

added button events for displaying backups window

This commit is contained in:
Jake Howard 2014-12-08 15:20:07 +00:00
parent e1ce265547
commit 8ebf8d5e9e
2 changed files with 7 additions and 0 deletions

View File

@ -204,6 +204,7 @@
this.viewAllRulesButton.Name = "viewAllRulesButton";
this.viewAllRulesButton.SubItemsExpandWidth = 14;
this.viewAllRulesButton.Text = "View All Rules";
this.viewAllRulesButton.Click += new System.EventHandler(this.viewAllRulesButton_Click);
//
// currentTransfersButton
//

View File

@ -188,5 +188,11 @@ namespace Saviour_Backup_System
{
}
private void viewAllRulesButton_Click(object sender, EventArgs e)
{
setup.BV = new backupViewer();
setup.BV.Show();
}
}
}