Code:
/ DotNET / DotNET / 8.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
- Condition.cs
- HwndSourceKeyboardInputSite.cs
- LongTypeConverter.cs
- DiscreteKeyFrames.cs
- WindowsFormsSectionHandler.cs
- InvalidDataContractException.cs
- OutOfProcStateClientManager.cs
- ErrorFormatterPage.cs
- DiagnosticTraceSource.cs
- CommandHelpers.cs
- ExpressionPrinter.cs
- ISFTagAndGuidCache.cs
- ZoneLinkButton.cs
- RegexTree.cs
- Single.cs
- arabicshape.cs
- PageContentAsyncResult.cs
- DesignerAdRotatorAdapter.cs
- HtmlImage.cs
- MergeFailedEvent.cs
- DataColumnMappingCollection.cs
- DateTime.cs
- HttpAsyncResult.cs
- SerializationInfo.cs
- GridItem.cs
- AttachedPropertyDescriptor.cs
- CompiledXpathExpr.cs
- ObjectItemNoOpAssemblyLoader.cs
- TextProperties.cs
- Classification.cs
- MLangCodePageEncoding.cs
- QilDataSource.cs
- ExpressionBuilder.cs
- SqlDataSourceParameterParser.cs
- Label.cs
- Style.cs
- WebHttpEndpointElement.cs
- ControlCachePolicy.cs
- ThaiBuddhistCalendar.cs
- TableDetailsRow.cs
- Parser.cs
- InstanceNameConverter.cs
- ValueType.cs
- SrgsElementFactory.cs
- ObjectItemCollection.cs
- FontInfo.cs
- DbProviderFactories.cs
- SiteMapNode.cs
- SettingsPropertyIsReadOnlyException.cs
- XmlAggregates.cs
- OperationCanceledException.cs
- OpCopier.cs
- SelectionHighlightInfo.cs
- RegisteredScript.cs
- EpmSyndicationContentSerializer.cs
- NonParentingControl.cs
- SqlError.cs
- ProfilePropertyMetadata.cs
- BindingMemberInfo.cs
- OpCodes.cs
- HtmlButton.cs
- Clock.cs
- InputBinding.cs
- WebPartConnection.cs
- RichTextBoxContextMenu.cs
- ListChangedEventArgs.cs
- WindowsServiceElement.cs
- ConditionCollection.cs
- AttributeProviderAttribute.cs
- Lasso.cs
- EncodingNLS.cs
- GroupDescription.cs
- TabControlCancelEvent.cs
- MobileContainerDesigner.cs
- AdjustableArrowCap.cs
- MatchingStyle.cs
- ContentFilePart.cs
- TableCellAutomationPeer.cs
- StyleSheetRefUrlEditor.cs
- ScriptReferenceBase.cs
- StructuralObject.cs
- WebControlAdapter.cs
- TreeWalker.cs
- PreApplicationStartMethodAttribute.cs
- BitmapPalettes.cs
- Label.cs
- IsolationInterop.cs
- TableCellCollection.cs
- RightsManagementSuppressedStream.cs
- CryptoConfig.cs
- UrlPath.cs
- ExpressionEvaluator.cs
- ClientOperationFormatterProvider.cs
- StatusBar.cs
- XmlCodeExporter.cs
- GPRECTF.cs
- StringValidatorAttribute.cs
- Metafile.cs
- BookmarkScopeInfo.cs
- ItemType.cs