Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / ComponentChangingEvent.cs / 1305376 / ComponentChangingEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel.Design { using Microsoft.Win32; using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [System.Runtime.InteropServices.ComVisible(true)] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public sealed class ComponentChangingEventArgs : EventArgs { private object component; private MemberDescriptor member; ///Provides data for the ///event. /// public object Component { get { return component; } } ////// Gets or sets the component that is being changed or that is the parent container of the member being changed. /// ////// public MemberDescriptor Member { get { return member; } } ////// Gets or sets the member of the component that is about to be changed. /// ////// public ComponentChangingEventArgs(object component, MemberDescriptor member) { this.component = component; this.member = member; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Initializes a new instance of the ///class. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FontDialog.cs
- FixedTextBuilder.cs
- BatchServiceHost.cs
- CreateUserWizard.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- ReflectionTypeLoadException.cs
- XPathBinder.cs
- Range.cs
- DataControlReference.cs
- SrgsRulesCollection.cs
- CollectionBase.cs
- GridViewDeleteEventArgs.cs
- EventLog.cs
- MimeXmlImporter.cs
- CountAggregationOperator.cs
- DeploymentSectionCache.cs
- sqlcontext.cs
- HtmlInputRadioButton.cs
- MethodMessage.cs
- PipeStream.cs
- MDIClient.cs
- SerializationEventsCache.cs
- Attribute.cs
- TemplateEditingService.cs
- PageContentCollection.cs
- FrameworkContentElement.cs
- CompositeDataBoundControl.cs
- ModulesEntry.cs
- WindowsProgressbar.cs
- WebPartConnectionsCloseVerb.cs
- TraceUtility.cs
- Popup.cs
- SafeNativeMethods.cs
- ItemContainerGenerator.cs
- PropertyPushdownHelper.cs
- WebPartConnectionsDisconnectVerb.cs
- DbConnectionPoolOptions.cs
- AliasedExpr.cs
- ListViewUpdatedEventArgs.cs
- ProtocolsConfiguration.cs
- HwndSource.cs
- AnimationLayer.cs
- XmlAtomErrorReader.cs
- ScrollItemPattern.cs
- Comparer.cs
- DeriveBytes.cs
- WindowsRegion.cs
- ProfileManager.cs
- XmlDeclaration.cs
- DebugTracing.cs
- UserControlBuildProvider.cs
- RecognizerInfo.cs
- ChildDocumentBlock.cs
- SqlDataRecord.cs
- SoapIncludeAttribute.cs
- ScrollEventArgs.cs
- MessageQueue.cs
- VoiceObjectToken.cs
- TreeNodeCollection.cs
- StrongName.cs
- CryptoKeySecurity.cs
- IxmlLineInfo.cs
- UInt64Converter.cs
- SystemThemeKey.cs
- EnumerableRowCollectionExtensions.cs
- XmlAnyAttributeAttribute.cs
- DecoderReplacementFallback.cs
- KeyFrames.cs
- ExtensionQuery.cs
- WebPartConnectionsCloseVerb.cs
- HandledMouseEvent.cs
- ContentPlaceHolder.cs
- DataGridColumnHeaderCollection.cs
- PrintPreviewGraphics.cs
- RealizationDrawingContextWalker.cs
- ListViewInsertionMark.cs
- SQLResource.cs
- RadialGradientBrush.cs
- ObjectQueryExecutionPlan.cs
- ProfilePropertySettings.cs
- DesignerDataRelationship.cs
- OrthographicCamera.cs
- SqlFactory.cs
- ApplicationGesture.cs
- ColorInterpolationModeValidation.cs
- Stopwatch.cs
- PanelStyle.cs
- XXXOnTypeBuilderInstantiation.cs
- ApplicationSecurityInfo.cs
- SimpleFieldTemplateFactory.cs
- WebResourceAttribute.cs
- DataRow.cs
- FillErrorEventArgs.cs
- ProvidePropertyAttribute.cs
- QilTargetType.cs
- ThreadNeutralSemaphore.cs
- Bidi.cs
- DesignerActionGlyph.cs
- StatusBarItem.cs
- PopupRoot.cs