Disabling icons in toolbar.

This commit is contained in:
Sigmanor 2016-01-26 18:40:18 +02:00
parent 54bc5c6571
commit 57326babd9

View file

@ -704,12 +704,16 @@ private void MainWindow_Activated(object sender, EventArgs e)
{
pictureBox11.Enabled = false;
pictureBox13.Enabled = false;
pictureBox6.Enabled = false;
pictureBox7.Enabled = false;
}
if (encryptionKey != "")
{
pictureBox11.Enabled = true;
pictureBox13.Enabled = true;
pictureBox6.Enabled = true;
pictureBox7.Enabled = true;
}
}