Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / System / Windows / EventSetter.cs / 1 / EventSetter.cs
/****************************************************************************\ * * File: SetterBase.cs * * TargetType event setting class. * * Copyright (C) 2004 by Microsoft Corporation. All rights reserved. * \***************************************************************************/ using System; using System.ComponentModel; // EditorBrowsableAttribute namespace System.Windows { ////// TargetType event setting class. /// public class EventSetter : SetterBase { ////// EventSetter construction /// public EventSetter() { } ////// EventSetter construction /// public EventSetter(RoutedEvent routedEvent, Delegate handler) { if (routedEvent == null) { throw new ArgumentNullException("routedEvent"); } if (handler == null) { throw new ArgumentNullException("handler"); } _event = routedEvent; _handler = handler; } ////// Event that is being set by this setter /// public RoutedEvent Event { get { return _event; } set { if (value == null) { throw new ArgumentNullException("value"); } CheckSealed(); _event = value; } } ////// Handler delegate that is being set by this setter /// public Delegate Handler { get { return _handler; } set { if (value == null) { throw new ArgumentNullException("value"); } CheckSealed(); _handler = value; } } ////// HandledEventsToo flag that is being set by this setter /// [EditorBrowsable(EditorBrowsableState.Never)] public bool HandledEventsToo { get { return _handledEventsToo; } set { CheckSealed(); _handledEventsToo = value; } } // // Do the error checking that we can only do once all of the properties have been // set, then call up to base. // internal override void Seal() { if (_event == null) { throw new ArgumentException(SR.Get(SRID.NullPropertyIllegal, "EventSetter.Event")); } if (_handler == null) { throw new ArgumentException(SR.Get(SRID.NullPropertyIllegal, "EventSetter.Handler")); } if (_handler.GetType() != _event.HandlerType) { throw new ArgumentException(SR.Get(SRID.HandlerTypeIllegal)); } base.Seal(); } private RoutedEvent _event; private Delegate _handler; private bool _handledEventsToo; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. /****************************************************************************\ * * File: SetterBase.cs * * TargetType event setting class. * * Copyright (C) 2004 by Microsoft Corporation. All rights reserved. * \***************************************************************************/ using System; using System.ComponentModel; // EditorBrowsableAttribute namespace System.Windows { ////// TargetType event setting class. /// public class EventSetter : SetterBase { ////// EventSetter construction /// public EventSetter() { } ////// EventSetter construction /// public EventSetter(RoutedEvent routedEvent, Delegate handler) { if (routedEvent == null) { throw new ArgumentNullException("routedEvent"); } if (handler == null) { throw new ArgumentNullException("handler"); } _event = routedEvent; _handler = handler; } ////// Event that is being set by this setter /// public RoutedEvent Event { get { return _event; } set { if (value == null) { throw new ArgumentNullException("value"); } CheckSealed(); _event = value; } } ////// Handler delegate that is being set by this setter /// public Delegate Handler { get { return _handler; } set { if (value == null) { throw new ArgumentNullException("value"); } CheckSealed(); _handler = value; } } ////// HandledEventsToo flag that is being set by this setter /// [EditorBrowsable(EditorBrowsableState.Never)] public bool HandledEventsToo { get { return _handledEventsToo; } set { CheckSealed(); _handledEventsToo = value; } } // // Do the error checking that we can only do once all of the properties have been // set, then call up to base. // internal override void Seal() { if (_event == null) { throw new ArgumentException(SR.Get(SRID.NullPropertyIllegal, "EventSetter.Event")); } if (_handler == null) { throw new ArgumentException(SR.Get(SRID.NullPropertyIllegal, "EventSetter.Handler")); } if (_handler.GetType() != _event.HandlerType) { throw new ArgumentException(SR.Get(SRID.HandlerTypeIllegal)); } base.Seal(); } private RoutedEvent _event; private Delegate _handler; private bool _handledEventsToo; } } // 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
- LinkConverter.cs
- returneventsaver.cs
- Int64AnimationBase.cs
- ThemeableAttribute.cs
- WebPartManager.cs
- ProgramNode.cs
- DocumentPaginator.cs
- _AcceptOverlappedAsyncResult.cs
- DbDataReader.cs
- Hyperlink.cs
- XmlElementAttribute.cs
- PathSegmentCollection.cs
- ProcessInfo.cs
- ExpressionPrefixAttribute.cs
- NativeMethods.cs
- SqlConnectionHelper.cs
- AuthenticationSection.cs
- ConnectionManagementSection.cs
- PathFigureCollectionConverter.cs
- ExternalFile.cs
- SafeFreeMibTable.cs
- ObjectStateManagerMetadata.cs
- Quaternion.cs
- ListViewSortEventArgs.cs
- ResolveCriteriaApril2005.cs
- ArithmeticLiteral.cs
- TargetConverter.cs
- HttpAsyncResult.cs
- TextRangeEditTables.cs
- SQLInt32Storage.cs
- CorrelationManager.cs
- QueryAccessibilityHelpEvent.cs
- DocumentViewerBaseAutomationPeer.cs
- HashMembershipCondition.cs
- EventLogQuery.cs
- WarningException.cs
- XmlDigitalSignatureProcessor.cs
- ShaderRenderModeValidation.cs
- SqlReferenceCollection.cs
- HMACSHA512.cs
- CustomErrorCollection.cs
- ProfileModule.cs
- BinaryObjectInfo.cs
- WebSysDisplayNameAttribute.cs
- SiteMapDataSourceView.cs
- CodeTypeReference.cs
- DataGridViewHeaderCell.cs
- WebDescriptionAttribute.cs
- WindowShowOrOpenTracker.cs
- ContentControl.cs
- StringInfo.cs
- OletxTransactionManager.cs
- GeneratedView.cs
- PrimaryKeyTypeConverter.cs
- ReversePositionQuery.cs
- CheckBoxStandardAdapter.cs
- StandardToolWindows.cs
- AbstractSvcMapFileLoader.cs
- RemotingSurrogateSelector.cs
- SqlBulkCopyColumnMappingCollection.cs
- Clipboard.cs
- TypeExtension.cs
- XappLauncher.cs
- WebPartUserCapability.cs
- filewebrequest.cs
- WebPartVerbCollection.cs
- DatatypeImplementation.cs
- StringOutput.cs
- EnumCodeDomSerializer.cs
- LocalizationParserHooks.cs
- AvTraceFormat.cs
- RegistrySecurity.cs
- KeyValueConfigurationCollection.cs
- TypedDataSetSchemaImporterExtension.cs
- DesignerAutoFormat.cs
- EncryptedType.cs
- Executor.cs
- TextEncodedRawTextWriter.cs
- CachedCompositeFamily.cs
- NetSectionGroup.cs
- CanonicalXml.cs
- HierarchicalDataSourceDesigner.cs
- WindowsMenu.cs
- XPathNode.cs
- AnimationStorage.cs
- UidPropertyAttribute.cs
- MemberDomainMap.cs
- OracleParameterCollection.cs
- MultiView.cs
- AssociationTypeEmitter.cs
- SignedXml.cs
- SqlStream.cs
- RolePrincipal.cs
- SymLanguageVendor.cs
- BasicCellRelation.cs
- ListViewGroup.cs
- ellipse.cs
- ThumbAutomationPeer.cs
- MultiplexingFormatMapping.cs
- QueryHandler.cs