Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebControls / SqlDataSourceWizardForm.cs / 1 / SqlDataSourceWizardForm.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.WebControls { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.ComponentModel.Design.Data; using System.Design; using System.Diagnostics; using System.Drawing; using System.Windows.Forms; using System.Web.UI.Design.Util; using System.Web.UI.WebControls; ////// The SqlDataSource configuration wizard. This guides the user through /// the connection string chooser panel and the command chooser panel. /// internal class SqlDataSourceWizardForm : WizardForm { private SqlDataSourceConnectionPanel _connectionPanel; private SqlDataSource _sqlDataSource; private SqlDataSourceDesigner _sqlDataSourceDesigner; private IDataEnvironment _dataEnvironment; private DesignerDataConnection _designerDataConnection; private SqlDataSourceSaveConfiguredConnectionPanel _saveConfiguredConnectionPanel; private SqlDataSourceConfigureParametersPanel _configureParametersPanel; private SqlDataSourceConfigureSelectPanel _configureSelectPanel; private SqlDataSourceCustomCommandPanel _customCommandPanel; private SqlDataSourceSummaryPanel _summaryPanel; ////// Creates a new SqlDataSourceWizardForm. /// public SqlDataSourceWizardForm(IServiceProvider serviceProvider, SqlDataSourceDesigner sqlDataSourceDesigner, IDataEnvironment dataEnvironment) : base(serviceProvider) { //Icon = new Icon(typeof(LibraryBuilderForm), "LibraryBuilder.ico"); Glyph = new Bitmap(typeof(SqlDataSourceWizardForm), "datasourcewizard.bmp"); Debug.Assert(dataEnvironment != null); _dataEnvironment = dataEnvironment; _sqlDataSource = (SqlDataSource)sqlDataSourceDesigner.Component; _sqlDataSourceDesigner = sqlDataSourceDesigner; Debug.Assert(_sqlDataSource != null); Text = SR.GetString(SR.ConfigureDataSource_Title, _sqlDataSource.ID); // Set up the connection panel _connectionPanel = CreateConnectionPanel(); // Adds the panel to the wizard SetPanels(new WizardPanel[] { _connectionPanel, }); // Create and register all child panels _saveConfiguredConnectionPanel = new SqlDataSourceSaveConfiguredConnectionPanel(_sqlDataSourceDesigner, _dataEnvironment); RegisterPanel(_saveConfiguredConnectionPanel); _configureParametersPanel = new SqlDataSourceConfigureParametersPanel(_sqlDataSourceDesigner); RegisterPanel(_configureParametersPanel); _configureSelectPanel = new SqlDataSourceConfigureSelectPanel(_sqlDataSourceDesigner); RegisterPanel(_configureSelectPanel); _customCommandPanel = new SqlDataSourceCustomCommandPanel(_sqlDataSourceDesigner); RegisterPanel(_customCommandPanel); _summaryPanel = new SqlDataSourceSummaryPanel(_sqlDataSourceDesigner); RegisterPanel(_summaryPanel); } ////// Gets the current data connection associated with this wizard. /// internal DesignerDataConnection DesignerDataConnection { get { return _designerDataConnection; } } ////// Gets the DataEnvironment service. /// internal IDataEnvironment DataEnvironment { get { return _dataEnvironment; } } protected override string HelpTopic { get { return "net.Asp.SqlDataSource.ConfigureDataSource"; } } ////// Gets the SqlDatasourceDesigner associated with this wizard /// internal SqlDataSourceDesigner SqlDataSourceDesigner { get { return _sqlDataSourceDesigner; } } ////// Creates the appropriate connection panel for the wizard. /// protected virtual SqlDataSourceConnectionPanel CreateConnectionPanel() { // Set up the connection panel return new SqlDataSourceDataConnectionChooserPanel(SqlDataSourceDesigner, DataEnvironment); } internal SqlDataSourceConfigureParametersPanel GetConfigureParametersPanel() { _configureParametersPanel.ResetUI(); return _configureParametersPanel; } internal SqlDataSourceConfigureSelectPanel GetConfigureSelectPanel() { _configureSelectPanel.ResetUI(); return _configureSelectPanel; } internal SqlDataSourceCustomCommandPanel GetCustomCommandPanel() { _customCommandPanel.ResetUI(); return _customCommandPanel; } internal SqlDataSourceSaveConfiguredConnectionPanel GetSaveConfiguredConnectionPanel() { _saveConfiguredConnectionPanel.ResetUI(); return _saveConfiguredConnectionPanel; } internal SqlDataSourceSummaryPanel GetSummaryPanel() { _summaryPanel.ResetUI(); return _summaryPanel; } ////// Called when a panel is about to change. /// protected override void OnPanelChanging(WizardPanelChangingEventArgs e) { base.OnPanelChanging(e); // If the panel that was just shown was the connection panel, we // keep track of what the connection is so that other panels can // use it. if (e.CurrentPanel == _connectionPanel) { _designerDataConnection = _connectionPanel.DataConnection; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlCodeExporter.cs
- PathFigureCollection.cs
- ThemeDirectoryCompiler.cs
- DialogResultConverter.cs
- smtpconnection.cs
- ListViewInsertionMark.cs
- XmlSchemaChoice.cs
- GestureRecognitionResult.cs
- WindowsRebar.cs
- Freezable.cs
- AnnotationResourceCollection.cs
- AddingNewEventArgs.cs
- Utils.cs
- RealProxy.cs
- DefaultExpression.cs
- CodeVariableReferenceExpression.cs
- BuildManager.cs
- HostVisual.cs
- JapaneseCalendar.cs
- AliasExpr.cs
- WindowsAuthenticationModule.cs
- XmlChildEnumerator.cs
- BitmapDownload.cs
- WriteableOnDemandStream.cs
- BufferedReadStream.cs
- ImageInfo.cs
- MutableAssemblyCacheEntry.cs
- BindableTemplateBuilder.cs
- Char.cs
- UIElement.cs
- _HeaderInfoTable.cs
- WebPartConnectionsEventArgs.cs
- Trace.cs
- XmlMembersMapping.cs
- ManagementNamedValueCollection.cs
- SQLInt32Storage.cs
- XMLSchema.cs
- DynamicValueConverter.cs
- GregorianCalendar.cs
- SrgsGrammar.cs
- WindowsToolbarAsMenu.cs
- WizardPanel.cs
- XmlLinkedNode.cs
- NativeWindow.cs
- CodeDomSerializer.cs
- ACE.cs
- XmlImplementation.cs
- NameValueConfigurationCollection.cs
- FastEncoderWindow.cs
- ClockController.cs
- TextEditorContextMenu.cs
- SqlNodeAnnotations.cs
- KeyGestureValueSerializer.cs
- UserPersonalizationStateInfo.cs
- SecondaryViewProvider.cs
- Image.cs
- WebPartPersonalization.cs
- SqlHelper.cs
- EventBuilder.cs
- Subtree.cs
- EntityContainerRelationshipSet.cs
- PathFigure.cs
- MenuBindingsEditor.cs
- ZipFileInfo.cs
- InkPresenter.cs
- DocumentPageHost.cs
- DocumentSequence.cs
- GenericAuthenticationEventArgs.cs
- InternalControlCollection.cs
- ControlBindingsCollection.cs
- GlobalizationSection.cs
- ResourceReferenceExpressionConverter.cs
- SizeAnimationUsingKeyFrames.cs
- XmlSchemaSimpleContent.cs
- ToolboxBitmapAttribute.cs
- StateInitializationDesigner.cs
- SafeProcessHandle.cs
- Point3DAnimationUsingKeyFrames.cs
- DbParameterHelper.cs
- ReferenceService.cs
- RequiredAttributeAttribute.cs
- SqlMethodTransformer.cs
- EventMappingSettingsCollection.cs
- SmiEventSink.cs
- X509ChainElement.cs
- RouteParametersHelper.cs
- StylusButton.cs
- COAUTHIDENTITY.cs
- DecimalStorage.cs
- DocumentSequence.cs
- ParallelEnumerable.cs
- CrossSiteScriptingValidation.cs
- HScrollBar.cs
- CheckoutException.cs
- Propagator.cs
- Int16Storage.cs
- DateTimeFormatInfo.cs
- ConnectionManagementSection.cs
- AgileSafeNativeMemoryHandle.cs
- WorkflowMessageEventArgs.cs