Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / Design / ComponentChangingEvent.cs / 1 / 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; } } }/// Initializes a new instance of the ///class. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- webclient.cs
- ClrPerspective.cs
- SqlMultiplexer.cs
- NullableConverter.cs
- TextBoxView.cs
- TrackBarRenderer.cs
- RoutingTable.cs
- StyleXamlTreeBuilder.cs
- ProxyHelper.cs
- DataGridViewComboBoxColumnDesigner.cs
- loginstatus.cs
- TypeElementCollection.cs
- Pair.cs
- Manipulation.cs
- HttpModuleActionCollection.cs
- Baml6Assembly.cs
- AdRotatorDesigner.cs
- ValueType.cs
- DiffuseMaterial.cs
- LinkUtilities.cs
- ListCommandEventArgs.cs
- TimeSpan.cs
- DataGridViewColumnEventArgs.cs
- SerializationAttributes.cs
- WebMessageEncoderFactory.cs
- Utils.cs
- Line.cs
- IsolatedStorageFileStream.cs
- XamlFxTrace.cs
- XmlCustomFormatter.cs
- FlowSwitchLink.cs
- CapabilitiesAssignment.cs
- DataGridViewCellStyleConverter.cs
- WebBrowserSiteBase.cs
- WebPartEditorOkVerb.cs
- StyleBamlRecordReader.cs
- UpDownBase.cs
- SiteMapNodeItem.cs
- GeneratedContractType.cs
- LateBoundBitmapDecoder.cs
- ExpressionBuilderCollection.cs
- Interlocked.cs
- ResourcesChangeInfo.cs
- ContentFilePart.cs
- ReadOnlyCollection.cs
- TickBar.cs
- TableLayout.cs
- WebPartExportVerb.cs
- Rotation3D.cs
- MenuEventArgs.cs
- DataGridCommandEventArgs.cs
- Span.cs
- COM2ExtendedUITypeEditor.cs
- BinaryConverter.cs
- PropertiesTab.cs
- ConsoleTraceListener.cs
- StringPropertyBuilder.cs
- RefreshPropertiesAttribute.cs
- XmlDataSourceNodeDescriptor.cs
- SessionPageStateSection.cs
- XPathAncestorQuery.cs
- TypeSemantics.cs
- SqlFactory.cs
- ValidationSummary.cs
- ServiceErrorHandler.cs
- MethodCallConverter.cs
- RIPEMD160.cs
- ErrorWebPart.cs
- DragAssistanceManager.cs
- IdentityModelStringsVersion1.cs
- Descriptor.cs
- InvariantComparer.cs
- XamlWriterExtensions.cs
- BamlBinaryWriter.cs
- CookieHandler.cs
- XmlC14NWriter.cs
- OdbcErrorCollection.cs
- HiddenFieldPageStatePersister.cs
- FlatButtonAppearance.cs
- RawStylusActions.cs
- DeflateStream.cs
- InstanceOwner.cs
- CatalogPartCollection.cs
- EventHandlersStore.cs
- MailWebEventProvider.cs
- ParseNumbers.cs
- DataGridViewComboBoxCell.cs
- XhtmlConformanceSection.cs
- TextBoxRenderer.cs
- DrawToolTipEventArgs.cs
- EntityContainerEntitySet.cs
- SpotLight.cs
- AssertSection.cs
- SystemThemeKey.cs
- WebPartZoneBase.cs
- XmlSerializerNamespaces.cs
- XmlSchemaSimpleContent.cs
- KeyInterop.cs
- SchemaNames.cs
- SQLByteStorage.cs