aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/GlobalPrograms/InstallerPanes/DirectoryPane.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Histacom2/GlobalPrograms/InstallerPanes/DirectoryPane.cs')
-rw-r--r--Histacom2/GlobalPrograms/InstallerPanes/DirectoryPane.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/Histacom2/GlobalPrograms/InstallerPanes/DirectoryPane.cs b/Histacom2/GlobalPrograms/InstallerPanes/DirectoryPane.cs
new file mode 100644
index 0000000..7e415dd
--- /dev/null
+++ b/Histacom2/GlobalPrograms/InstallerPanes/DirectoryPane.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 DirectoryPane : UserControl
+ {
+ public DirectoryPane()
+ {
+ InitializeComponent();
+ }
+
+ private void DirectoryPane_Load(object sender, EventArgs e)
+ {
+ classicLabel3.Text = $"Setup will install {((WinClassicInstaller)Parent.Parent).progName} to the destination folder.";
+ classicLabel5.Text = $"C:\\Program Files\\12padams\\{((WinClassicInstaller)Parent.Parent).progName}\\";
+ }
+ }
+}