SymphonyElectron/installer/win/WixSharpToolset/Samples/Custom_UI/CustomCLRDialog/Step2Panel.cs
2020-08-21 08:25:55 +02:00

26 lines
504 B
C#

using Microsoft.Deployment.WindowsInstaller;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ConsoleApplication1
{
public partial class Step2Panel : Form
{
public Step2Panel()
{
InitializeComponent();
}
public Step2Panel(Session session)
{
InitializeComponent();
}
}
}