diff options
| author | lempamo <[email protected]> | 2017-09-24 15:20:55 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-09-24 15:20:55 -0400 |
| commit | 9e96ca19ed0904e7c80496071b0d7efdde405414 (patch) | |
| tree | ab56237c7d4be359d489e40a6b8fdc6a9ec3e2e8 /Histacom2/GlobalPrograms/InstallerPanes/EULAPane.cs | |
| parent | d55b0e22ae5006892e8a95d2f188a773dccada77 (diff) | |
| download | histacom2-9e96ca19ed0904e7c80496071b0d7efdde405414.tar.gz histacom2-9e96ca19ed0904e7c80496071b0d7efdde405414.tar.bz2 histacom2-9e96ca19ed0904e7c80496071b0d7efdde405414.zip | |
some more installer stuff
Diffstat (limited to 'Histacom2/GlobalPrograms/InstallerPanes/EULAPane.cs')
| -rw-r--r-- | Histacom2/GlobalPrograms/InstallerPanes/EULAPane.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Histacom2/GlobalPrograms/InstallerPanes/EULAPane.cs b/Histacom2/GlobalPrograms/InstallerPanes/EULAPane.cs index c477836..e584117 100644 --- a/Histacom2/GlobalPrograms/InstallerPanes/EULAPane.cs +++ b/Histacom2/GlobalPrograms/InstallerPanes/EULAPane.cs @@ -24,5 +24,11 @@ namespace Histacom2.GlobalPrograms.InstallerPanes radioButton1.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular); radioButton2.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular); } + + private void radioButton1_CheckedChanged(object sender, EventArgs e) + { + if (radioButton1.Checked) ((WinClassicInstaller)Parent.Parent).classicButton2.Enabled = true; + else ((WinClassicInstaller)Parent.Parent).classicButton2.Enabled = false; + } } } |
