diff options
| author | lempamo <[email protected]> | 2017-09-22 21:18:09 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-09-22 21:18:09 -0400 |
| commit | bd74f334cf0a2fcb4f98b1d33fa909bce766d02b (patch) | |
| tree | 6b92605494e319ae5f94f33a2d44742b935b8fe0 /Histacom2/GlobalPrograms/InstallerPanes/WelcomePane.cs | |
| parent | 2968c39415d6f4ea4db275d1fc12861843616ae9 (diff) | |
| download | histacom2-bd74f334cf0a2fcb4f98b1d33fa909bce766d02b.tar.gz histacom2-bd74f334cf0a2fcb4f98b1d33fa909bce766d02b.tar.bz2 histacom2-bd74f334cf0a2fcb4f98b1d33fa909bce766d02b.zip | |
new installer prototype
Diffstat (limited to 'Histacom2/GlobalPrograms/InstallerPanes/WelcomePane.cs')
| -rw-r--r-- | Histacom2/GlobalPrograms/InstallerPanes/WelcomePane.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Histacom2/GlobalPrograms/InstallerPanes/WelcomePane.cs b/Histacom2/GlobalPrograms/InstallerPanes/WelcomePane.cs new file mode 100644 index 0000000..48ac001 --- /dev/null +++ b/Histacom2/GlobalPrograms/InstallerPanes/WelcomePane.cs @@ -0,0 +1,26 @@ +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; + +namespace Histacom2.GlobalPrograms.InstallerPanes +{ + public partial class WelcomePane : UserControl + { + public WelcomePane() + { + InitializeComponent(); + } + + private void WelcomePane_Load(object sender, EventArgs e) + { + classicLabel1.Text = $"Welcome to the {((WinClassicInstaller)Parent.Parent).progName} Setup Wizard"; + classicLabel2.Text = $"This will install {((WinClassicInstaller)Parent.Parent).progName} on your computer."; + } + } +} |
