Code:
/ DotNET / DotNET / 8.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
- BaseParser.cs
- XmlRawWriterWrapper.cs
- VisualTarget.cs
- RotateTransform3D.cs
- JsonServiceDocumentSerializer.cs
- TransportContext.cs
- Clipboard.cs
- SiteMapPath.cs
- PtsContext.cs
- SplayTreeNode.cs
- _BaseOverlappedAsyncResult.cs
- ServiceSettingsResponseInfo.cs
- Quad.cs
- FontStyleConverter.cs
- PropertyDescriptor.cs
- PropertyEntry.cs
- UidManager.cs
- FlowPosition.cs
- RequestResizeEvent.cs
- dtdvalidator.cs
- PropertyEntry.cs
- AstNode.cs
- MemberInfoSerializationHolder.cs
- PageHandlerFactory.cs
- CodeBlockBuilder.cs
- SQLRoleProvider.cs
- CurrencyManager.cs
- ModifierKeysValueSerializer.cs
- XmlDataSource.cs
- Validator.cs
- AuthenticationService.cs
- ElementMarkupObject.cs
- DataGridViewButtonColumn.cs
- Queue.cs
- DbConnectionPoolOptions.cs
- WinInetCache.cs
- GraphicsPath.cs
- FieldToken.cs
- PermissionSet.cs
- DatasetMethodGenerator.cs
- ReadOnlyPropertyMetadata.cs
- PointLight.cs
- DataGridViewCheckBoxCell.cs
- DecoderFallback.cs
- ApplicationSecurityManager.cs
- SqlNamer.cs
- HttpCacheVary.cs
- WpfWebRequestHelper.cs
- WithParamAction.cs
- InternalTypeHelper.cs
- ServiceModelDictionary.cs
- InvalidOleVariantTypeException.cs
- VectorKeyFrameCollection.cs
- SmtpFailedRecipientException.cs
- SequentialUshortCollection.cs
- AccessText.cs
- PeerContact.cs
- WindowsUpDown.cs
- TreeViewItem.cs
- CollectionViewGroupRoot.cs
- SystemSounds.cs
- DashStyle.cs
- IPEndPoint.cs
- ExceptionRoutedEventArgs.cs
- XmlChoiceIdentifierAttribute.cs
- ZipFileInfoCollection.cs
- DataGridViewAutoSizeModeEventArgs.cs
- ScriptControlManager.cs
- UnicodeEncoding.cs
- _ConnectStream.cs
- InputLanguageSource.cs
- UserControlParser.cs
- WriterOutput.cs
- HttpVersion.cs
- Normalization.cs
- DataPointer.cs
- DataChangedEventManager.cs
- ControlPersister.cs
- CannotUnloadAppDomainException.cs
- ServiceOperation.cs
- WebGetAttribute.cs
- HandlerBase.cs
- XPathDocumentBuilder.cs
- TrackBarRenderer.cs
- AsymmetricSignatureDeformatter.cs
- AssemblyResolver.cs
- ImmutableClientRuntime.cs
- StorageAssociationTypeMapping.cs
- UserUseLicenseDictionaryLoader.cs
- FontEditor.cs
- DesignerOptionService.cs
- InvalidOperationException.cs
- Stopwatch.cs
- bidPrivateBase.cs
- PostBackOptions.cs
- SafeNativeHandle.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- CaseInsensitiveComparer.cs
- ToolboxItemFilterAttribute.cs
- TextViewBase.cs