Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WebTemplatePage"/> class.
 /// </summary>
 /// <param name="wizard">The wizard.</param>
 /// <param name="model">The model.</param>
 public WebTemplatePage(ArtifactWizardForm wizard, WebTemplatePresentationModel model)
     : base(wizard)
 {
     _model = model;
     InitializeComponent();
     base.LoadSettings();
     base.Headline    = CKSProperties.WebTemplatePage1_StepTitle;
     base.HelpKeyword = "VS.SharePointTools.SPE.WebTemplate";
 }
 public DeploymentPage(ArtifactWizardForm wiz, DeploymentPresentationModel model) : base(wiz)
 {
     _model = model;
     InitializeComponent();
     base.LoadSettings();
     base.Headline = "WizardResources.DeploymentPageHeadline";
     urlComboBox.AutoCompleteMode   = AutoCompleteMode.Suggest;
     urlComboBox.AutoCompleteSource = AutoCompleteSource.ListItems;
     base.HelpKeyword = "VS.SharePointTools.SPE.FirstWizardPage";
 }
Exemple #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BaseWizardPage"/> class.
 /// </summary>
 /// <param name="wizard">The wizard.</param>
 protected BaseWizardPage(ArtifactWizardForm wizard)
     : base(wizard)
 {
     base.ShowInfoPanel = false;
 }