diff options
| author | lempamo <[email protected]> | 2017-09-23 12:23:10 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-09-23 12:23:10 -0400 |
| commit | 1ee3e00f8f0ee879fce4edf7d1ba9889335bc826 (patch) | |
| tree | b446c4d9856ad463c11d087da4355efbf5630da7 /Histacom2/GlobalPrograms/InstallerPanes/EULAPane.cs | |
| parent | 245a7c360bf2b6a6892abd32d3693847103d1132 (diff) | |
| download | histacom2-1ee3e00f8f0ee879fce4edf7d1ba9889335bc826.tar.gz histacom2-1ee3e00f8f0ee879fce4edf7d1ba9889335bc826.tar.bz2 histacom2-1ee3e00f8f0ee879fce4edf7d1ba9889335bc826.zip | |
EULA Pane & Disabled buttons
Diffstat (limited to 'Histacom2/GlobalPrograms/InstallerPanes/EULAPane.cs')
| -rw-r--r-- | Histacom2/GlobalPrograms/InstallerPanes/EULAPane.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Histacom2/GlobalPrograms/InstallerPanes/EULAPane.cs b/Histacom2/GlobalPrograms/InstallerPanes/EULAPane.cs new file mode 100644 index 0000000..c477836 --- /dev/null +++ b/Histacom2/GlobalPrograms/InstallerPanes/EULAPane.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using Histacom2.Engine; + +namespace Histacom2.GlobalPrograms.InstallerPanes +{ + public partial class EULAPane : UserControl + { + public EULAPane() + { + InitializeComponent(); + } + + private void DirectoryPane_Load(object sender, EventArgs e) + { + textBox1.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular); + radioButton1.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular); + radioButton2.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular); + } + } +} |
