Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebControls / ParameterCollectionEditorForm.cs / 1 / ParameterCollectionEditorForm.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.WebControls { using System; using System.Design; using System.Diagnostics; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Web.UI.Design.Util; using System.Web.UI.WebControls; using System.Windows.Forms; ////// A form for editing ParameterCollection objects. /// This simply hosts the ParameterEditorUserControl. /// internal class ParameterCollectionEditorForm : DesignerForm { private ParameterCollection _parameters; private System.Web.UI.Control _control; private System.Windows.Forms.Button _okButton; private System.Windows.Forms.Button _cancelButton; private System.Web.UI.Design.WebControls.ParameterEditorUserControl _parameterEditorUserControl; ////// Creates a new ParameterCollectionEditorForm for a given ParameterCollection. /// public ParameterCollectionEditorForm(IServiceProvider serviceProvider, ParameterCollection parameters, ControlDesigner designer) : base(serviceProvider) { Debug.Assert(parameters != null); _parameters = parameters; if (designer != null) { _control = designer.Component as System.Web.UI.Control; } InitializeComponent(); InitializeUI(); ArrayList paramlist = new ArrayList(); foreach (ICloneable parameter in parameters) { object clonedParameter = parameter.Clone(); if (designer != null) { designer.RegisterClone(parameter, clonedParameter); } paramlist.Add(clonedParameter); } _parameterEditorUserControl.AddParameters((Parameter[])paramlist.ToArray(typeof(Parameter))); } protected override string HelpTopic { get { return "net.Asp.Parameter.CollectionEditor"; } } #region Windows Form Designer generated code ////// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { _okButton = new System.Windows.Forms.Button(); _cancelButton = new System.Windows.Forms.Button(); _parameterEditorUserControl = new System.Web.UI.Design.WebControls.ParameterEditorUserControl(ServiceProvider, _control); SuspendLayout(); // // parameterEditorUserControl // _parameterEditorUserControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); _parameterEditorUserControl.Location = new System.Drawing.Point(12, 12); _parameterEditorUserControl.Size = new System.Drawing.Size(560, 278); _parameterEditorUserControl.TabIndex = 10; // // okButton // _okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); _okButton.Location = new System.Drawing.Point(416, 299); _okButton.TabIndex = 20; _okButton.Click += new System.EventHandler(OnOkButtonClick); // // cancelButton // _cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); _cancelButton.Location = new System.Drawing.Point(497, 299); _cancelButton.TabIndex = 30; _cancelButton.Click += new System.EventHandler(OnCancelButtonClick); // // ParameterCollectionEditorForm // AcceptButton = _okButton; CancelButton = _cancelButton; ClientSize = new System.Drawing.Size(584, 334); Controls.Add(_parameterEditorUserControl); Controls.Add(_cancelButton); Controls.Add(_okButton); MinimumSize = new System.Drawing.Size(484, 272); InitializeForm(); ResumeLayout(false); } #endregion ////// Called after InitializeComponent to perform additional actions that /// are not supported by the designer. /// private void InitializeUI() { _okButton.Text = SR.GetString(SR.OK); _cancelButton.Text = SR.GetString(SR.Cancel); Text = SR.GetString(SR.ParameterCollectionEditorForm_Caption); } ////// The click event handler for the OK button. /// private void OnOkButtonClick(System.Object sender, System.EventArgs e) { Parameter[] parameters = _parameterEditorUserControl.GetParameters(); _parameters.Clear(); foreach (Parameter p in parameters) { _parameters.Add(p); } DialogResult = DialogResult.OK; Close(); } ////// The click event handler for the Cancel button. /// private void OnCancelButtonClick(System.Object sender, System.EventArgs e) { DialogResult = DialogResult.Cancel; Close(); } } } // 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
- Terminate.cs
- ArrayHelper.cs
- CompositeCollectionView.cs
- ViewCellSlot.cs
- XPathChildIterator.cs
- InvalidPropValue.cs
- ResourceSet.cs
- ParseChildrenAsPropertiesAttribute.cs
- SimpleExpression.cs
- ProxyWebPart.cs
- CompilerResults.cs
- ControlCommandSet.cs
- StructuredTypeEmitter.cs
- CapabilitiesState.cs
- BaseServiceProvider.cs
- handlecollector.cs
- WebPartDescriptionCollection.cs
- StringBuilder.cs
- AdCreatedEventArgs.cs
- XslAst.cs
- XmlnsCompatibleWithAttribute.cs
- EventArgs.cs
- PolyQuadraticBezierSegment.cs
- JsonGlobals.cs
- controlskin.cs
- FixedSOMPageElement.cs
- RelationalExpressions.cs
- DesignTimeValidationFeature.cs
- DataGridItemAutomationPeer.cs
- TemplateBindingExpressionConverter.cs
- IsolatedStorageFilePermission.cs
- LiteralDesigner.cs
- ClassDataContract.cs
- _ContextAwareResult.cs
- ServiceModelInstallComponent.cs
- KeyedPriorityQueue.cs
- Int64Animation.cs
- XmlSchemaExternal.cs
- XmlDocumentSerializer.cs
- ComponentDispatcher.cs
- Overlapped.cs
- PrintPreviewControl.cs
- ExtensionMethods.cs
- NotifyCollectionChangedEventArgs.cs
- LoadedOrUnloadedOperation.cs
- TemplateColumn.cs
- DynamicVirtualDiscoSearcher.cs
- Cloud.cs
- ProcessThreadCollection.cs
- ProfileService.cs
- DocumentPageView.cs
- FtpWebResponse.cs
- formatter.cs
- XmlCompatibilityReader.cs
- WebPartEventArgs.cs
- ActivityInstanceReference.cs
- IntellisenseTextBox.cs
- ValidationRuleCollection.cs
- AspNetSynchronizationContext.cs
- RC2.cs
- WindowsListViewGroup.cs
- ManagedIStream.cs
- PointValueSerializer.cs
- DoubleAverageAggregationOperator.cs
- RTLAwareMessageBox.cs
- ProfileBuildProvider.cs
- SQLGuid.cs
- XmlEncoding.cs
- ProtectedConfigurationProviderCollection.cs
- DragSelectionMessageFilter.cs
- DataFormats.cs
- Authorization.cs
- ElementNotEnabledException.cs
- EmptyTextWriter.cs
- WrapPanel.cs
- StylusPointPropertyUnit.cs
- NavigationProperty.cs
- XamlToRtfWriter.cs
- GeneralTransform.cs
- RefreshEventArgs.cs
- UICuesEvent.cs
- HandlerFactoryCache.cs
- EntityChangedParams.cs
- ContainerActivationHelper.cs
- TablePatternIdentifiers.cs
- SoapAttributeOverrides.cs
- AuthenticationModuleElement.cs
- TextLine.cs
- COM2PropertyPageUITypeConverter.cs
- WebPartExportVerb.cs
- InfoCardTrace.cs
- FamilyMapCollection.cs
- LinearQuaternionKeyFrame.cs
- TextElementCollectionHelper.cs
- OrderedDictionary.cs
- InfoCardSymmetricAlgorithm.cs
- ConvertBinder.cs
- CodeSnippetExpression.cs
- EventMappingSettingsCollection.cs
- DeploymentExceptionMapper.cs