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
- PlatformCulture.cs
- PropertyGridView.cs
- SchemaObjectWriter.cs
- StylusDownEventArgs.cs
- ManagementDateTime.cs
- DataSourceNameHandler.cs
- MessageSecurityProtocolFactory.cs
- ReliabilityContractAttribute.cs
- MessageProperties.cs
- CachedTypeface.cs
- XmlCustomFormatter.cs
- OleTxTransactionInfo.cs
- ReliableSessionBindingElementImporter.cs
- baseaxisquery.cs
- FrugalList.cs
- COM2TypeInfoProcessor.cs
- EnvironmentPermission.cs
- DbParameterCollection.cs
- XmlArrayAttribute.cs
- Util.cs
- XmlTextAttribute.cs
- ProfilePropertyNameValidator.cs
- DataControlExtensions.cs
- SpotLight.cs
- Style.cs
- DocumentAutomationPeer.cs
- RowToParametersTransformer.cs
- StorageMappingFragment.cs
- IsolatedStorageFile.cs
- WebServiceErrorEvent.cs
- HttpApplication.cs
- DeleteBookmarkScope.cs
- RegexCompiler.cs
- MaskInputRejectedEventArgs.cs
- PermissionSetEnumerator.cs
- SafeCloseHandleCritical.cs
- SendReply.cs
- RelativeSource.cs
- SpecialTypeDataContract.cs
- QuaternionKeyFrameCollection.cs
- ResourceManagerWrapper.cs
- SafeNativeMethodsOther.cs
- XmlDataFileEditor.cs
- DataGridViewAccessibleObject.cs
- ButtonBase.cs
- Panel.cs
- UriTemplateEquivalenceComparer.cs
- FactoryGenerator.cs
- TraceProvider.cs
- DropShadowEffect.cs
- StringBuilder.cs
- ErasingStroke.cs
- StrongNameIdentityPermission.cs
- XmlReflectionImporter.cs
- oledbmetadatacollectionnames.cs
- GradientStop.cs
- TraceListener.cs
- Semaphore.cs
- PageThemeBuildProvider.cs
- ScriptControlDescriptor.cs
- GACIdentityPermission.cs
- ListViewDeleteEventArgs.cs
- DetailsViewPageEventArgs.cs
- Expander.cs
- LinkUtilities.cs
- RectConverter.cs
- XmlUnspecifiedAttribute.cs
- DbException.cs
- MessageBox.cs
- EnumConverter.cs
- GeneralTransform3DGroup.cs
- Drawing.cs
- DocumentPageHost.cs
- ContextMarshalException.cs
- DrawingAttributesDefaultValueFactory.cs
- StrongNameKeyPair.cs
- SynchronizedInputPattern.cs
- ScriptManager.cs
- TagNameToTypeMapper.cs
- SplitterDesigner.cs
- initElementDictionary.cs
- SafeSecurityHelper.cs
- FileUtil.cs
- ConfigurationSection.cs
- TimeoutException.cs
- DefaultObjectMappingItemCollection.cs
- BitmapPalettes.cs
- NumberEdit.cs
- Compress.cs
- CodeTryCatchFinallyStatement.cs
- listitem.cs
- HtmlInputText.cs
- TreeNodeCollection.cs
- updateconfighost.cs
- ObjectAnimationBase.cs
- ObservableCollection.cs
- StringCollection.cs
- DataListGeneralPage.cs
- DelegatingConfigHost.cs
- CompModSwitches.cs