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
- FactoryId.cs
- UnauthorizedAccessException.cs
- peernodeimplementation.cs
- TypefaceMap.cs
- XmlSchemaAnnotation.cs
- Point3DAnimation.cs
- SimpleFieldTemplateUserControl.cs
- CodeNamespaceImport.cs
- OpCopier.cs
- AuthenticationModuleElement.cs
- ListViewContainer.cs
- Viewport2DVisual3D.cs
- ArgumentOutOfRangeException.cs
- XmlNotation.cs
- ReadOnlyPermissionSet.cs
- ContractSearchPattern.cs
- LostFocusEventManager.cs
- WebPartZoneBase.cs
- PropertyDescriptorGridEntry.cs
- MessageAction.cs
- ImageMap.cs
- GlobalProxySelection.cs
- ListViewItem.cs
- PassportAuthenticationModule.cs
- HMAC.cs
- ProgressBarAutomationPeer.cs
- BindingOperations.cs
- DecoderFallback.cs
- DataContractSerializerMessageContractImporter.cs
- StylusPointProperties.cs
- NameValuePermission.cs
- PointLightBase.cs
- WebFormDesignerActionService.cs
- Button.cs
- RoleManagerEventArgs.cs
- XmlAutoDetectWriter.cs
- XmlStringTable.cs
- CodeGeneratorAttribute.cs
- Profiler.cs
- RectangleHotSpot.cs
- CookielessHelper.cs
- arclist.cs
- XmlAttributeAttribute.cs
- SoapMessage.cs
- LogLogRecordHeader.cs
- X509WindowsSecurityToken.cs
- XmlTextReader.cs
- DefaultPrintController.cs
- JoinGraph.cs
- DefaultMemberAttribute.cs
- SignedInfo.cs
- WebPartTransformerCollection.cs
- TemplateColumn.cs
- SweepDirectionValidation.cs
- PageClientProxyGenerator.cs
- CollectionViewProxy.cs
- BaseUriWithWildcard.cs
- XPathLexer.cs
- RelatedCurrencyManager.cs
- TextEditorSpelling.cs
- ProxyManager.cs
- ConfigurationElement.cs
- ObjectDataSourceSelectingEventArgs.cs
- NonParentingControl.cs
- RegisterResponseInfo.cs
- Clock.cs
- NamedPermissionSet.cs
- AnnotationAuthorChangedEventArgs.cs
- PageBorderless.cs
- SqlBulkCopyColumnMappingCollection.cs
- SqlRowUpdatedEvent.cs
- coordinator.cs
- ParseHttpDate.cs
- ControlPropertyNameConverter.cs
- PointAnimationUsingPath.cs
- BuildProvidersCompiler.cs
- DesignSurfaceServiceContainer.cs
- httpstaticobjectscollection.cs
- PrivateFontCollection.cs
- Assembly.cs
- ObjectQueryState.cs
- PtsContext.cs
- XmlQueryRuntime.cs
- WindowsAuthenticationEventArgs.cs
- DataTableClearEvent.cs
- HandleRef.cs
- _FixedSizeReader.cs
- CornerRadius.cs
- RepeatButtonAutomationPeer.cs
- FileUpload.cs
- _TLSstream.cs
- XpsDigitalSignature.cs
- LazyInitializer.cs
- CustomAssemblyResolver.cs
- SimpleColumnProvider.cs
- DebuggerAttributes.cs
- ErrorLog.cs
- PtsContext.cs
- JournalNavigationScope.cs
- SqlDataSourceStatusEventArgs.cs