Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWebControlsDesign / System / Data / WebControls / Design / Util / WizardForm.cs / 1305376 / WizardForm.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //----------------------------------------------------------------------------- using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Design; using System.Diagnostics; using System.Drawing; using System.Windows.Forms; using System.Windows.Forms.Design; namespace System.Web.UI.Design.WebControls.Util { ////// Represents a wizard used to guide users through configuration processes. /// internal abstract class WizardForm : TaskFormBase { private System.Windows.Forms.Button _nextButton; private System.Windows.Forms.Button _previousButton; private System.Windows.Forms.Button _cancelButton; private System.Windows.Forms.Button _finishButton; private System.Windows.Forms.TableLayoutPanel _wizardButtonsTableLayoutPanel; private System.Windows.Forms.Label _dummyLabel1; private System.Windows.Forms.Label _dummyLabel2; private System.Windows.Forms.Label _dummyLabel3; System.Collections.Generic.Stack_panelHistory; private WizardPanel _initialPanel; /// /// Creates a new WizardForm with a given service provider. /// public WizardForm(IServiceProvider serviceProvider) : base(serviceProvider) { _panelHistory = new System.Collections.Generic.Stack(); InitializeComponent(); InitializeUI(); } /// /// The Finish button of the wizard. /// public System.Windows.Forms.Button FinishButton { get { return _finishButton; } } ////// The Next button of the wizard. /// public System.Windows.Forms.Button NextButton { get { return _nextButton; } } ////// The Back button of the wizard. /// public System.Windows.Forms.Button PreviousButton { get { return _previousButton; } } #region Designer generated code ////// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this._wizardButtonsTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); this._previousButton = new System.Windows.Forms.Button(); this._nextButton = new System.Windows.Forms.Button(); this._dummyLabel2 = new System.Windows.Forms.Label(); this._finishButton = new System.Windows.Forms.Button(); this._dummyLabel3 = new System.Windows.Forms.Label(); this._cancelButton = new System.Windows.Forms.Button(); this._dummyLabel1 = new System.Windows.Forms.Label(); this._wizardButtonsTableLayoutPanel.SuspendLayout(); this.SuspendLayout(); // // _wizardButtonsTableLayoutPanel // this._wizardButtonsTableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this._wizardButtonsTableLayoutPanel.AutoSize = true; this._wizardButtonsTableLayoutPanel.ColumnCount = 7; this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 3F)); this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 7F)); this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 7F)); this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); this._wizardButtonsTableLayoutPanel.Controls.Add(this._previousButton); this._wizardButtonsTableLayoutPanel.Controls.Add(this._dummyLabel1); this._wizardButtonsTableLayoutPanel.Controls.Add(this._nextButton); this._wizardButtonsTableLayoutPanel.Controls.Add(this._dummyLabel2); this._wizardButtonsTableLayoutPanel.Controls.Add(this._finishButton); this._wizardButtonsTableLayoutPanel.Controls.Add(this._dummyLabel3); this._wizardButtonsTableLayoutPanel.Controls.Add(this._cancelButton); this._wizardButtonsTableLayoutPanel.Location = new System.Drawing.Point(205, 394); this._wizardButtonsTableLayoutPanel.Name = "_wizardButtonsTableLayoutPanel"; this._wizardButtonsTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle()); this._wizardButtonsTableLayoutPanel.Size = new System.Drawing.Size(317, 20); this._wizardButtonsTableLayoutPanel.TabIndex = 100; // // _previousButton // this._previousButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this._previousButton.AutoSize = true; this._previousButton.Enabled = false; this._previousButton.Location = new System.Drawing.Point(0, 0); this._previousButton.Margin = new System.Windows.Forms.Padding(0); this._previousButton.MinimumSize = new System.Drawing.Size(75, 23); this._previousButton.Name = "_previousButton"; this._previousButton.TabIndex = 10; this._previousButton.Click += new System.EventHandler(this.OnPreviousButtonClick); // // _dummyLabel1 // this._dummyLabel1.Location = new System.Drawing.Point(75, 0); this._dummyLabel1.Margin = new System.Windows.Forms.Padding(0); this._dummyLabel1.Name = "_dummyLabel1"; this._dummyLabel1.Size = new System.Drawing.Size(3, 0); this._dummyLabel1.TabIndex = 20; // // _nextButton // this._nextButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this._nextButton.AutoSize = true; this._nextButton.Location = new System.Drawing.Point(78, 0); this._nextButton.Margin = new System.Windows.Forms.Padding(0); this._nextButton.MinimumSize = new System.Drawing.Size(75, 23); this._nextButton.Name = "_nextButton"; this._nextButton.TabIndex = 30; this._nextButton.Click += new System.EventHandler(this.OnNextButtonClick); // // _dummyLabel2 // this._dummyLabel2.Location = new System.Drawing.Point(153, 0); this._dummyLabel2.Margin = new System.Windows.Forms.Padding(0); this._dummyLabel2.Name = "_dummyLabel2"; this._dummyLabel2.Size = new System.Drawing.Size(7, 0); this._dummyLabel2.TabIndex = 40; // // _finishButton // this._finishButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this._finishButton.AutoSize = true; this._finishButton.Enabled = false; this._finishButton.Location = new System.Drawing.Point(160, 0); this._finishButton.Margin = new System.Windows.Forms.Padding(0); this._finishButton.MinimumSize = new System.Drawing.Size(75, 23); this._finishButton.Name = "_finishButton"; this._finishButton.TabIndex = 50; this._finishButton.Click += new System.EventHandler(this.OnFinishButtonClick); // // _dummyLabel3 // this._dummyLabel3.Location = new System.Drawing.Point(235, 0); this._dummyLabel3.Margin = new System.Windows.Forms.Padding(0); this._dummyLabel3.Name = "_dummyLabel3"; this._dummyLabel3.Size = new System.Drawing.Size(7, 0); this._dummyLabel3.TabIndex = 60; // // _cancelButton // this._cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this._cancelButton.AutoSize = true; this._cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this._cancelButton.Location = new System.Drawing.Point(242, 0); this._cancelButton.Margin = new System.Windows.Forms.Padding(0); this._cancelButton.MinimumSize = new System.Drawing.Size(75, 23); this._cancelButton.Name = "_cancelButton"; this._cancelButton.TabIndex = 70; this._cancelButton.Click += new System.EventHandler(this.OnCancelButtonClick); // // TaskForm // this.AcceptButton = this._nextButton; this.CancelButton = this._cancelButton; this.Controls.Add(this._wizardButtonsTableLayoutPanel); this._wizardButtonsTableLayoutPanel.ResumeLayout(false); this._wizardButtonsTableLayoutPanel.PerformLayout(); InitializeForm(); this.ResumeLayout(false); this.PerformLayout(); } #endregion ////// Called after InitializeComponent to perform additional actions that /// are not supported by the designer. /// private void InitializeUI() { _cancelButton.Text = Strings.CancelButton; _cancelButton.AccessibleName = Strings.CancelButtonAccessibleName; _nextButton.Text = Strings.Wizard_NextButton; _nextButton.AccessibleName = Strings.Wizard_NextButtonAccessibleName; _previousButton.Text = Strings.Wizard_PreviousButton; _previousButton.AccessibleName = Strings.Wizard_PreviousButtonAccessibleName; _finishButton.Text = Strings.Wizard_FinishButton; _finishButton.AccessibleName = Strings.Wizard_FinishButtonAccessibleName; } ////// Goes to the next panel in the wizard. /// public void NextPanel() { WizardPanel currentPanel = _panelHistory.Peek(); if (currentPanel.OnNext()) { currentPanel.Hide(); WizardPanel nextPanel = currentPanel.NextPanel; if (nextPanel != null) { RegisterPanel(nextPanel); _panelHistory.Push(nextPanel); OnPanelChanging(new WizardPanelChangingEventArgs(currentPanel)); ShowPanel(nextPanel); } } } ////// Click event handler for the Cancel button. /// protected virtual void OnCancelButtonClick(object sender, System.EventArgs e) { DialogResult = DialogResult.Cancel; Close(); } ////// Raises the InitialActivated event. /// protected override void OnInitialActivated(EventArgs e) { base.OnInitialActivated(e); if (_initialPanel != null) { RegisterPanel(_initialPanel); _panelHistory.Push(_initialPanel); ShowPanel(_initialPanel); } } ////// Click event handler for the Finish button. /// protected virtual void OnFinishButtonClick(object sender, System.EventArgs e) { WizardPanel currentPanel = _panelHistory.Peek(); if (currentPanel.OnNext()) { // Call OnComplete for every panel on the stack WizardPanel[] panels = _panelHistory.ToArray(); Array.Reverse(panels); foreach (WizardPanel panel in panels) { panel.OnComplete(); } DialogResult = DialogResult.OK; Close(); } } ////// Click event handler for the Next button. /// protected virtual void OnNextButtonClick(object sender, System.EventArgs e) { NextPanel(); } ////// Called when a panel is about to change. /// protected virtual void OnPanelChanging(WizardPanelChangingEventArgs e) { } ////// Click event handler for the Previous button. /// protected virtual void OnPreviousButtonClick(object sender, System.EventArgs e) { PreviousPanel(); } ////// Goes to the back panel in the wizard. /// public void PreviousPanel() { if (_panelHistory.Count > 1) { WizardPanel currentPanel = _panelHistory.Pop(); WizardPanel backPanel = _panelHistory.Peek(); currentPanel.OnPrevious(); currentPanel.Hide(); OnPanelChanging(new WizardPanelChangingEventArgs(currentPanel)); ShowPanel(backPanel); } } ////// Registers a panel for use in this wizard. /// internal void RegisterPanel(WizardPanel panel) { if (!TaskPanel.Controls.Contains(panel)) { panel.Dock = DockStyle.Fill; panel.SetParentWizard(this); panel.Hide(); TaskPanel.Controls.Add(panel); } } ////// Initializes a WizardForm to use an ordered array of panels. /// protected void SetPanels(WizardPanel[] panels) { if ((panels != null) && (panels.Length > 0)) { RegisterPanel(panels[0]); _initialPanel = panels[0]; for (int i = 0; i < panels.Length - 1; i++) { RegisterPanel(panels[i + 1]); panels[i].NextPanel = panels[i + 1]; } } } ////// Shows the panel specified by the given index. /// private void ShowPanel(WizardPanel panel) { if (_panelHistory.Count == 1) { // If we're on the first panel, disable the back button PreviousButton.Enabled = false; } else { // Otherwise, enable it PreviousButton.Enabled = true; } if (panel.NextPanel == null) { // If we're on the last panel, change the button text NextButton.Enabled = false; } else { NextButton.Enabled = true; } // Show the specified panel panel.Show(); // Set the description and caption of the task bar AccessibleDescription = panel.Caption; CaptionLabel.Text = panel.Caption; if (IsHandleCreated) { // Refresh the screen Invalidate(); } // Focus the newly shown panel panel.Focus(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ParentUndoUnit.cs
- PropertyDescriptorComparer.cs
- HtmlFormWrapper.cs
- DataRelation.cs
- GenerateHelper.cs
- FileDialogCustomPlacesCollection.cs
- ParserExtension.cs
- ExtensionDataReader.cs
- DetailsViewDeleteEventArgs.cs
- ExpressionBindings.cs
- WindowsAuthenticationModule.cs
- SQLInt64.cs
- HttpServerUtilityWrapper.cs
- TextPenaltyModule.cs
- latinshape.cs
- RegularExpressionValidator.cs
- XmlEnumAttribute.cs
- FilterQuery.cs
- RadioButtonList.cs
- InvalidateEvent.cs
- EventSourceCreationData.cs
- Expression.cs
- RowTypeElement.cs
- XmlValueConverter.cs
- DefaultValueConverter.cs
- HandlerFactoryCache.cs
- ElementUtil.cs
- StaticResourceExtension.cs
- SiteMapHierarchicalDataSourceView.cs
- PathGeometry.cs
- GroupBox.cs
- InheritanceAttribute.cs
- IOException.cs
- FontDialog.cs
- JsonWriter.cs
- LicenseException.cs
- DbExpressionRules.cs
- ScrollChrome.cs
- PropertyGroupDescription.cs
- AppendHelper.cs
- AvtEvent.cs
- RuleValidation.cs
- NestedContainer.cs
- UInt16Storage.cs
- SessionStateSection.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- PropertyGridCommands.cs
- HybridDictionary.cs
- DateTimeValueSerializerContext.cs
- Library.cs
- TakeOrSkipWhileQueryOperator.cs
- RegisteredArrayDeclaration.cs
- listitem.cs
- DocumentGridPage.cs
- shaper.cs
- DbConnectionClosed.cs
- ValueConversionAttribute.cs
- OperationPickerDialog.designer.cs
- RegexGroup.cs
- SelectionListComponentEditor.cs
- WebServiceEnumData.cs
- FigureHelper.cs
- ServiceDesigner.cs
- XmlDocumentFragment.cs
- HttpStreamMessageEncoderFactory.cs
- coordinatorfactory.cs
- HttpModuleAction.cs
- Crc32.cs
- ClientTargetSection.cs
- PolicyLevel.cs
- WSHttpTransportSecurityElement.cs
- SharedPerformanceCounter.cs
- AttachedPropertyMethodSelector.cs
- DataTableMapping.cs
- ProcessHostFactoryHelper.cs
- RangeBaseAutomationPeer.cs
- ItemMap.cs
- BStrWrapper.cs
- HttpSysSettings.cs
- Utils.cs
- XPathNodeIterator.cs
- EqualityArray.cs
- DataBoundControlHelper.cs
- NetworkInterface.cs
- RuntimeArgumentHandle.cs
- ControlAdapter.cs
- ComplexPropertyEntry.cs
- TypeToTreeConverter.cs
- unsafenativemethodsother.cs
- ReadOnlyActivityGlyph.cs
- SqlWebEventProvider.cs
- MaterializeFromAtom.cs
- OracleBinary.cs
- RewritingProcessor.cs
- StrokeCollection2.cs
- UserPreferenceChangingEventArgs.cs
- SyndicationElementExtension.cs
- TextBoxAutoCompleteSourceConverter.cs
- TextHintingModeValidation.cs
- ScriptHandlerFactory.cs