using System;
using System.Windows.Forms;
using Scada.AddIn.Contracts;
namespace PrinterSelect
{
re"> /// <summary>
re"> /// Description of Project Wizard Extension.
re"> /// </summary>
re"> [AddInExtension("Your Project Wizard Extension Name", "Your Project Wizard Extension Description")]
re"> public class ProjectWizardExtension : IProjectWizardExtension
re"> {
re"> #region IProjectWizardExtension implementation
re">
re"> public void Run(IProject context, IBehavior behavior)
re"> {
re"> // enter your code which should be executed on triggering the function "Execute Project Wizard Extension" in the SCADA Runtime
re"> PrintDialog PrintDialog1 = new PrintDialog();
re"> PrintDialog1.ShowDialog();
re"> }
re">
re"> #endregion
re"> }
}